Fix apiKey not set bug?

This commit is contained in:
2021-09-19 08:52:44 -07:00
parent 5fa28e2dd0
commit cf16a9bb94
+5 -1
View File
@@ -14,7 +14,11 @@ class osuAPI {
} }
public init(): void { public init(): void {
this.client = new Api(Environment.get().OSU_API_KEY, {
notFoundAsError: false,
completeScores: true,
parseNumeric: true
});
} }
public end(): void { public end(): void {