Skip to content

Commit

Permalink
Removed unnecessary call inside deleteFriend()
Browse files Browse the repository at this point in the history
  • Loading branch information
Chomp committed Dec 14, 2024
1 parent 32dd4db commit 85cdcd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/src/callbacks/DialogueCallbacks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export class DialogueCallbacks implements OnUpdate {

/** Handle client/friend/delete */
public deleteFriend(url: string, request: IDeleteFriendRequest, sessionID: string): INullResponseData {
this.httpResponse.getBody(this.dialogueController.deleteFriend(sessionID, request));
this.dialogueController.deleteFriend(sessionID, request);
return this.httpResponse.nullResponse();
}

Expand Down

0 comments on commit 85cdcd1

Please sign in to comment.