1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-12 13:28:33 +00:00

Fixed save file picker path

This commit is contained in:
Diogo Trindade 2023-06-05 14:25:39 +01:00
parent c0323f7248
commit 70b6035b0d

View File

@ -77,6 +77,6 @@ public class SaveFileDialogBuilder
public async Task<string?> ShowAsync()
{
IStorageFile? path = await _parent.StorageProvider.SaveFilePickerAsync(_options);
return path?.Path.AbsolutePath;
return path?.Path.LocalPath;
}
}