We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633b76f commit 0e0c7b6Copy full SHA for 0e0c7b6
packages/core/src/providers/osu.ts
@@ -14,7 +14,7 @@ export interface OsuUserCompact {
14
avatar_url: string
15
country_code: string
16
default_group: string
17
- id: string
+ id: number
18
is_active: boolean
19
is_bot: boolean
20
is_deleted: boolean
@@ -127,7 +127,7 @@ export default function Osu<P extends OsuProfile>(
127
userinfo: "https://osu.ppy.sh/api/v2/me",
128
profile(profile) {
129
return {
130
- id: profile.id,
+ id: profile.id.toString(),
131
email: null,
132
name: profile.username,
133
image: profile.avatar_url,
0 commit comments