Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Commit

Permalink
fetch must always return a string
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed May 15, 2014
1 parent acdc2d7 commit 175f741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion css.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ exports.fetch = function(load) {
// dont reload styles loaded in the head
for (var i = 0; i < linkHrefs.length; i++)
if (load.address == linkHrefs[i])
return callback();
return callback('');
return loadCSS(load.address);
}

0 comments on commit 175f741

Please sign in to comment.