We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a10a92a + 3880f05 commit 72eaaf3Copy full SHA for 72eaaf3
sourcePane.js
@@ -230,7 +230,7 @@ module.exports = {
230
.then(function (response) {
231
if (!happy(response, 'GET')) return
232
const desc = response.responseText
233
- if (!desc) { // Defensive https://github.com/linkeddata/rdflib.js/issues/506
+ if (desc === undefined) { // Defensive https://github.com/linkeddata/rdflib.js/issues/506
234
const msg = 'source pane: No text in response object!!'
235
statusRow.appendChild(UI.widgets.errorMessageBlock(dom, msg))
236
return // Never mis-represent the contents of the file.
0 commit comments