Skip to content

Commit

Permalink
LibWeb: Remove double comma in FrameLoader debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
IdanHo authored and linusg committed May 5, 2021
1 parent 346560d commit 37903db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Userland/Libraries/LibWeb/Loader/FrameLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ void FrameLoader::resource_did_load()
return;
}

dbgln("I believe this content has MIME type '{}', , encoding '{}'", resource()->mime_type(), resource()->encoding());
dbgln("I believe this content has MIME type '{}', encoding '{}'", resource()->mime_type(), resource()->encoding());

auto document = DOM::Document::create();
document->set_url(url);
Expand Down

0 comments on commit 37903db

Please sign in to comment.