Skip to content

Commit 2f6c35e

Browse files
committed
Fix build in release
1 parent ca3707d commit 2f6c35e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Files/ViewModels/Properties/FileProperty.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -296,9 +296,10 @@ public async static Task<List<FileProperty>> RetrieveAndInitializePropertiesAsyn
296296
keyValuePairs.Add(prop, val);
297297
}
298298
#else
299+
IDictionary<string, object> keyValuePairs = new Dictionary<string, object>();
299300
if (file.Properties != null)
300301
{
301-
var keyValuePairs = await file.Properties.RetrievePropertiesAsync(propsToGet);
302+
keyValuePairs = await file.Properties.RetrievePropertiesAsync(propsToGet);
302303
}
303304
#endif
304305
foreach (var prop in list)

0 commit comments

Comments
 (0)