Merge branch 'feature/monorepo/release-notes' of github.com:0xProject/0x-monorepo into feature/monorepo/release-notes

This commit is contained in:
Steve Klebanoff
2019-01-07 09:45:21 -08:00

View File

@@ -6,7 +6,7 @@ import { utils } from './utils';
export const alertDiscordAsync = async (releaseNotes: string): Promise<void> => {
const webhookUrl = constants.discordAlertWebhookUrl;
if (!webhookUrl) {
if (webhookUrl === undefined) {
throw new Error("No discord webhook url, can't alert");
}