Merge branch 'master' into httpinsecure

This commit is contained in:
El RIDO 2019-06-20 21:01:00 +02:00
commit 77419ec2c1
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
5 changed files with 8 additions and 5 deletions

View file

@ -1513,6 +1513,9 @@ jQuery.PrivateBin = (function($, RawDeflate) {
} else if (typeof args === 'string') {
// convert string to array if needed
args = [args];
} else if (args instanceof Error) {
// extract message into array if needed
args = [args.message];
}
// pass to custom handler if defined