From fd8aa4433c2de842684322762d5f8d1c096a7b14 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 7 Oct 2022 01:29:19 -0400 Subject: [PATCH] Change connector server response to "Zotero is running" People are confused by "Zotero Connector Server is Available". I'm not sure if this will be any better, but not mentioning the connector might help -- that seems to be part of the problem. We could display a longer message with a link to https://www.zotero.org/support/kb/connector_zotero_unavailable, but this is the /ping page that gets hit constantly, so it seems like we should keep it short (though probably it doesn't make a difference). --- chrome/content/zotero/xpcom/connector/server_connector.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/chrome/content/zotero/xpcom/connector/server_connector.js b/chrome/content/zotero/xpcom/connector/server_connector.js index c50d4bc135..84ad52aad8 100644 --- a/chrome/content/zotero/xpcom/connector/server_connector.js +++ b/chrome/content/zotero/xpcom/connector/server_connector.js @@ -1689,9 +1689,8 @@ Zotero.Server.Connector.Ping.prototype = { */ init: function (req) { if (req.method == 'GET') { - return [200, "text/html", '' + - 'Zotero Connector Server is Available' + - 'Zotero Connector Server is Available']; + return [200, "text/html", '' + + 'Zotero is running']; } else { // Store the active URL so it can be used for site-specific Quick Copy if (req.data.activeURL) {