Skip to content

Commit 24d43ca

Browse files
dokugodanbev
authored andcommitted
inspector: update faviconUrl
PR-URL: #29562 Reviewed-By: David Carlier <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 6265e41 commit 24d43ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/inspector_socket_server.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,8 @@ void InspectorSocketServer::SendListResponse(InspectorSocket* socket,
343343
response.push_back(std::map<std::string, std::string>());
344344
std::map<std::string, std::string>& target_map = response.back();
345345
target_map["description"] = "node.js instance";
346-
target_map["faviconUrl"] = "https://nodejs.org/static/favicon.ico";
346+
target_map["faviconUrl"] =
347+
"https://nodejs.org/static/images/favicons/favicon.ico";
347348
target_map["id"] = id;
348349
target_map["title"] = delegate_->GetTargetTitle(id);
349350
Escape(&target_map["title"]);

0 commit comments

Comments
 (0)