Skip to content

Commit b2cce13

Browse files
dokugoBridgeAR
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 3f6ce39 commit b2cce13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/inspector_socket_server.cc

Lines changed: 2 additions & 1 deletion
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)