Skip to content

Commit

Permalink
inspector: update faviconUrl
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dokugo authored and BridgeAR committed Oct 9, 2019
1 parent 3f6ce39 commit b2cce13
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/inspector_socket_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,8 @@ void InspectorSocketServer::SendListResponse(InspectorSocket* socket,
response.push_back(std::map<std::string, std::string>());
std::map<std::string, std::string>& target_map = response.back();
target_map["description"] = "node.js instance";
target_map["faviconUrl"] = "https://nodejs.org/static/favicon.ico";
target_map["faviconUrl"] =
"https://nodejs.org/static/images/favicons/favicon.ico";
target_map["id"] = id;
target_map["title"] = delegate_->GetTargetTitle(id);
Escape(&target_map["title"]);
Expand Down

0 comments on commit b2cce13

Please sign in to comment.