1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 05:52:54 +08:00

Merge pull request #9414 from Game4all/fix-log-redirection

Fix notification redirecting to the old log folder when game installation has been migrated to another location
This commit is contained in:
Dan Balasescu 2020-07-01 15:12:28 +09:00 committed by GitHub
commit 3fbb2b3f42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -767,7 +767,7 @@ namespace osu.Game
Text = "Subsequent messages have been logged. Click to view log files.", Text = "Subsequent messages have been logged. Click to view log files.",
Activated = () => Activated = () =>
{ {
Host.Storage.GetStorageForDirectory("logs").OpenInNativeExplorer(); Storage.GetStorageForDirectory("logs").OpenInNativeExplorer();
return true; return true;
} }
})); }));