Browse Source

return empty text instead of empty data URI

Gildas 7 years ago
parent
commit
e4c7ebf425
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/single-file/single-file-browser.js

+ 1 - 1
lib/single-file/single-file-browser.js

@@ -71,7 +71,7 @@ this.SingleFile = (() => {
 						return textContent;
 					}
 				} catch (error) {
-					return "data:,";
+					return "";
 				}
 			}
 		}