Skip to content

Commit 220ba2f

Browse files
committed
mxyx
1 parent 8ca5fb2 commit 220ba2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/offsetStore.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ const lookupStore = new Store<IOffsetsLookup>({name: "lookup"});
148148
async function fetchOffsetLookupJson(error: boolean = false): Promise<IOffsetsLookup> {
149149
const GetUrl = SettingsStore.get('CDN_Url', 'nullUrl');
150150
const CDN_Url = GetUrl == 'nullUrl' ? BASE_URL : GetUrl;
151-
const url = error ? BASE_URL_error : CDN_Url;
151+
const url = error ? CDN_Url : BASE_URL_error;
152152
return fetch(`${url}/lookup.json`)
153153
.then((response) => response.json())
154154
.then((data) => { return data as IOffsetsLookup })

0 commit comments

Comments
 (0)