diff options
Diffstat (limited to 'server/controllers/api/users/my-subscriptions.ts')
-rw-r--r-- | server/controllers/api/users/my-subscriptions.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/users/my-subscriptions.ts b/server/controllers/api/users/my-subscriptions.ts index 6ba8ba597..6e2aa3711 100644 --- a/server/controllers/api/users/my-subscriptions.ts +++ b/server/controllers/api/users/my-subscriptions.ts | |||
@@ -99,7 +99,7 @@ async function areSubscriptionsExist (req: express.Request, res: express.Respons | |||
99 | const obj = results.find(r => { | 99 | const obj = results.find(r => { |
100 | const server = r.ActorFollowing.Server | 100 | const server = r.ActorFollowing.Server |
101 | 101 | ||
102 | return r.ActorFollowing.preferredUsername === sanitizedHandle.name && | 102 | return r.ActorFollowing.preferredUsername.toLowerCase() === sanitizedHandle.name.toLowerCase() && |
103 | ( | 103 | ( |
104 | (!server && !sanitizedHandle.host) || | 104 | (!server && !sanitizedHandle.host) || |
105 | (server.host === sanitizedHandle.host) | 105 | (server.host === sanitizedHandle.host) |