LibWeb: Remove double comma in FrameLoader debug logging

This commit is contained in:
Idan Horowitz 2021-05-05 18:26:46 +03:00 committed by Linus Groh
parent 346560d7c8
commit 37903db2b4
Notes: sideshowbarker 2024-07-18 18:41:34 +09:00

View file

@ -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);