Stop using untyped try-catches T_T

This commit is contained in:
Brandon Smith
2015-08-20 22:53:04 -03:00
parent a44ba237df
commit 9d1d549563

View File

@@ -528,7 +528,7 @@ namespace Discord
})
.ToArray();
}
catch { } //Bad Permissions?
catch (HttpException) { } //Bad Permissions?
}
return null;
}