Skip to content

Commit

Permalink
fix local sprite callback
Browse files Browse the repository at this point in the history
  • Loading branch information
acalcutt committed Feb 18, 2024
1 parent c35e1e1 commit 807229e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/request_resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const getLocalSpriteImage = (styleDir, url, callback) => {
callback(err);
return null;
}
callback(null, data);
callback(null, { data });
return null;
});
};
Expand Down

0 comments on commit 807229e

Please sign in to comment.