Do not read err.message when creating object url

This commit is contained in:
Jerko Steiner 2019-11-11 19:38:01 -03:00
parent 5f8266e1cb
commit ef03bf9aa1

View File

@ -10,7 +10,7 @@ function safeCreateObjectURL (stream) {
try {
return createObjectURL(stream)
} catch (err) {
debug('Error using createObjectURL: %s', err.message)
debug('Error using createObjectURL: %s', err)
return null
}
}