maybe fix?
This commit is contained in:
parent
33b931b5f1
commit
0f68b2b69e
@ -15,7 +15,10 @@ export default class BeatSaverService {
|
||||
if (toObject.notFound) {
|
||||
return undefined;
|
||||
}
|
||||
return toObject;
|
||||
// Return the map if it doesn't need to be refreshed
|
||||
if (!toObject.shouldRefresh()) {
|
||||
return toObject;
|
||||
}
|
||||
}
|
||||
|
||||
const token = await beatsaverService.lookupMap(hash);
|
||||
|
@ -9,6 +9,7 @@
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"isolatedModules": true,
|
||||
"strict": true,
|
||||
"baseUrl": "./",
|
||||
"paths": {
|
||||
|
Reference in New Issue
Block a user