Andrew Holsted

Results 5 comments of Andrew Holsted

I'm still seeing errors on pre/post js files relating to this. Has anyone made any progress?

Looks like it's related to this - https://github.com/Kagami/ffmpeg.js/issues/44#issuecomment-392248729

Seeing an issue as well with expiry dates not working properly and the cookie just being set for the session.

I'm seeing the same thing @tamlyn. Did you find a resolution since reporting this?

Ok. In my case, I ended up having to do ``` return trx('daily_poll_votes') .insert({ userId, vote, symbol, date }) .where({ 'daily_poll_votes.userId': userId, 'daily_poll_votes.date': date, }) .onConflict(['userId', 'date']) .merge({ vote });...