We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e83504a commit 4e98da8Copy full SHA for 4e98da8
1 file changed
SuperPatch.Core/Storages/Bromite/BromiteRemoteStorage.cs
@@ -42,7 +42,14 @@ public override async Task<byte[]> GetPatchAsync(string filename)
42
public override async Task<string> GetPatchesListAsync()
43
{
44
if (string.IsNullOrEmpty(ChromiumCommit)) await FetchChromiumCommit();
45
- return await http.GetStringAsync($"{PatchSourceUrl}/{workspace.CommitShaOrTag}/build/bromite_patches_list.txt");
+ try
46
+ {
47
+ return await http.GetStringAsync($"{PatchSourceUrl}/{workspace.CommitShaOrTag}/build/cromite_patches_list.txt");
48
+ }
49
+ catch
50
51
+ return await http.GetStringAsync($"{PatchSourceUrl}/{workspace.CommitShaOrTag}/build/bromite_patches_list.txt");
52
53
}
54
55
0 commit comments