We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca3707d commit c5aa87cCopy full SHA for c5aa87c
Files/ViewModels/Properties/FileProperty.cs
@@ -296,9 +296,10 @@ public async static Task<List<FileProperty>> RetrieveAndInitializePropertiesAsyn
296
keyValuePairs.Add(prop, val);
297
}
298
#else
299
+ var keyValuePairs = new Dictionary<string, object>();
300
if (file.Properties != null)
301
{
- var keyValuePairs = await file.Properties.RetrievePropertiesAsync(propsToGet);
302
+ keyValuePairs = await file.Properties.RetrievePropertiesAsync(propsToGet);
303
304
#endif
305
foreach (var prop in list)
0 commit comments