APNS provider - wrong env check?
Hi all!
In APNS provider there is the following check for
prod env
.
File: /novu/providers/apns/src/lib/apns.provider.ts
production: process.env.NODE_ENV === 'production'
However, it seems that the actual prod value is prod
. Logically, this is an issue if I'm not mistaken.5 Replies
Unknown Userβ’2y ago
Message Not Public
Sign In & Join Server To View
I think you're right, it should be
prod
Good finding ππ»Unknown Userβ’2y ago
Message Not Public
Sign In & Join Server To View
GitHub
π Bug Report: APNS environment parameters issue Β· Issue #2346 Β· nov...
π Description In APNS provider there is the following check for prod env parameter. /novu/providers/apns/src/lib/apns.provider.ts production: process.env.NODE_ENV === 'production' H...
Thank you!!!