1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-21 21:09:22 +00:00
This commit is contained in:
Pierre HUBERT 2020-06-30 14:34:14 +02:00
parent ee31359323
commit 07f6622aca

View File

@ -261,7 +261,7 @@ export abstract class BaseRequestsHandler implements AbstractUserConnectionConta
const friendID = await this.postUserId(name);
if(!await FriendsHelper.AreFriend(this.getUserId(), friendID))
this.error(401, "You are not friend with this personn!");
this.error(401, "You are not friend with this person!");
return friendID;
}