Skip to content

Commit 324fe15

Browse files
committed
Fix links
1 parent 0a8973c commit 324fe15

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img alt="Files Logo" src="src/Files.App%20(Package)/Assets/AppTiles/Release/StoreLogo.scale-400.png" width="100px" />
2+
<img alt="Files Logo" src="../src/Files.App%20(Package)/Assets/AppTiles/Release/StoreLogo.scale-400.png" width="100px" />
33
<h1 align="center">Files</h1>
44
</p>
55

@@ -48,4 +48,4 @@ Looking for a place to start? Check out the [task board](https://github.com/orgs
4848

4949
## Screenshots
5050

51-
![Files](assets/FilesScreenshot.png)
51+
![Files](../assets/FilesScreenshot.png)

src/Files.App/Constants.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,11 @@ public static class GitHub
219219
public const string SupportUsUrl = @"https://github.com/sponsors/yaira2";
220220
}
221221

222+
public static class DocsPath
223+
{
224+
public const string ThirdPartyNoticePath = @"ms-appx:///.github/NOTICE.md";
225+
}
226+
222227
public static class Actions
223228
{
224229
public const int MaxSelectedItems = 5;

src/Files.App/ViewModels/Settings/AboutViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public Task SupportUs()
111111

112112
public async Task LoadThirdPartyNoticesAsync()
113113
{
114-
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(@"ms-appx:///NOTICE.md"));
114+
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(Constants.DocsPath.ThirdPartyNoticePath));
115115
ThirdPartyNotices = await FileIO.ReadTextAsync(file);
116116
}
117117

0 commit comments

Comments
 (0)