diff --git a/main/src/com/google/refine/importers/WikitextImporter.java b/main/src/com/google/refine/importers/WikitextImporter.java index 735956198..d66144f92 100644 --- a/main/src/com/google/refine/importers/WikitextImporter.java +++ b/main/src/com/google/refine/importers/WikitextImporter.java @@ -737,7 +737,7 @@ public class WikitextImporter extends TabularImportingParserBase { String wikiUrl = JSONUtilities.getString(options, "wikiUrl", null); // Wikidata reconciliation endpoint, hardcoded because the user might not have it in its services String reconUrl = JSONUtilities.getString(options, "reconService", - "https://tools.wmflabs.org/openrefine-wikidata/en/api"); + "https://wdreconcile.toolforge.org/en/api"); StandardReconConfig cfg = getReconConfig(reconUrl); if (wikiUrl != null) { diff --git a/main/webapp/modules/core/scripts/reconciliation/recon-manager.js b/main/webapp/modules/core/scripts/reconciliation/recon-manager.js index 7c737e371..784f657e3 100644 --- a/main/webapp/modules/core/scripts/reconciliation/recon-manager.js +++ b/main/webapp/modules/core/scripts/reconciliation/recon-manager.js @@ -172,7 +172,7 @@ ReconciliationManager.getOrRegisterServiceFromUrl = function(url, f, silent) { ReconciliationManager.ensureDefaultServicePresent = function() { var lang = $.i18n('core-recon/wd-recon-lang'); - var url = "https://tools.wmflabs.org/openrefine-wikidata/"+lang+"/api"; + var url = "https://wdreconcile.toolforge.org/"+lang+"/api"; ReconciliationManager.getOrRegisterServiceFromUrl(url, function(service) { }, true); return url; };