yafp / ttth

ttth (talk to the hand) is an electron based desktop app for online services like WhatsApp, Threema, Telegram, Twitter, Google and several others.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Noty is not defined

yafp opened this issue · comments

commented

Seems like the current noty implemention throws errors:

Noty is not defined

see sentry issue: TTTH-1K

commented

previous:

var n = new Noty(
{
...
}

should be replaced with

const Noty = require("noty");
var n = new Noty(
{
...
}

And switch from lib/noty to noty via npm.

Seems to work for linux&mac in builds as well.