Fix #825 properly

This commit is contained in:
Paddy Xu
2021-03-07 19:02:08 +01:00
parent 9f426326ba
commit a91261435a
9 changed files with 47 additions and 17 deletions

View File

@@ -25,13 +25,13 @@ namespace QuickLook.Plugin.ImageViewer.AnimatedImage
{
internal abstract class AnimationProvider : IDisposable
{
protected AnimationProvider(string path, MetaProvider meta)
protected AnimationProvider(Uri path, MetaProvider meta)
{
Path = path;
Meta = meta;
}
public string Path { get; }
public Uri Path { get; }
public MetaProvider Meta { get; }