Skip to content

Commit

Permalink
FIX ComicFuz: download on non crypted picture (#6072)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeZeDev authored and Sheepux committed Jan 2, 2024
1 parent a8a22c0 commit 6977952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/mjs/connectors/ComicFuz.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default class ComicFuz extends Connector {
} else {
buffer = {
mimeType: response.headers.get('content-type'),
data: buffer
data: new Uint8Array(buffer)
};
}
this._applyRealMime(buffer);
Expand Down

0 comments on commit 6977952

Please sign in to comment.