skaaptjop

Results 5 comments of skaaptjop

It is there for null but not undefined ``` function hashFunction(input){ if(input == null || isAlreadyHashed(input)){ return input; } return sha256Sync(input.trim().toLowerCase(), {outputEncoding: 'hex'}); } ``` One could rewrite that first...

Looks like this is resolved in[commit e4ebdf48fdfee975755614579e9664be7876a235]( https://github.com/facebookincubator/ConversionsAPI-Tag-for-GoogleTagManager/commit/e4ebdf48fdfee975755614579e9664be7876a235)

Tests seem to be passing on latest commits

Problem I believe might be here: https://github.com/sendgrid/sendgrid-python/blob/3e9d4efac5d652de81fb82ae38d256aad78c00d5/sendgrid/helpers/eventwebhook/__init__.py#L47 `key.verify` wants payload in bytes, not unicode string so why not just leave the payload in bytes the whole way through? Then there...