From 1959af5e1bbdeab3cbeb37869d7ef05ffbc348f1 Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Sun, 12 Jan 2020 11:39:26 +0200 Subject: [PATCH] resolveRoleId: fix return type --- backend/src/plugins/ZeppelinPlugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/plugins/ZeppelinPlugin.ts b/backend/src/plugins/ZeppelinPlugin.ts index b0256611..02807738 100644 --- a/backend/src/plugins/ZeppelinPlugin.ts +++ b/backend/src/plugins/ZeppelinPlugin.ts @@ -243,7 +243,7 @@ export class ZeppelinPlugin extends Plug * In the event of duplicate role names, this function will return the first one it comes across. * @param roleResolvable */ - async resolveRoleId(roleResolvable: string): Promise { + async resolveRoleId(roleResolvable: string): Promise { const roleId = await resolveRoleId(this.bot, this.guildId, roleResolvable); return roleId; }