aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/data/schemas/options-schema.json2
-rw-r--r--ext/js/core.js2
-rw-r--r--ext/js/pages/settings/backup-controller.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/ext/data/schemas/options-schema.json b/ext/data/schemas/options-schema.json
index 13bbbaec..601f5d06 100644
--- a/ext/data/schemas/options-schema.json
+++ b/ext/data/schemas/options-schema.json
@@ -901,7 +901,7 @@
"type": "string"
},
"default": [
- "yomichan"
+ "yomitan"
]
},
"screenshot": {
diff --git a/ext/js/core.js b/ext/js/core.js
index b43d08ff..5b064a36 100644
--- a/ext/js/core.js
+++ b/ext/js/core.js
@@ -724,7 +724,7 @@ class Logger extends EventDispatcher {
if (typeof errorData !== 'undefined') {
message += `\nData: ${JSON.stringify(errorData, null, 4)}`;
}
- message += '\n\nIssues can be reported at https://github.com/FooSoft/yomichan/issues';
+ message += '\n\nIssues can be reported at https://github.com/themoeway/yomitan/issues';
switch (level) {
case 'info': console.info(message); break;
diff --git a/ext/js/pages/settings/backup-controller.js b/ext/js/pages/settings/backup-controller.js
index d95a64cd..b4de01bf 100644
--- a/ext/js/pages/settings/backup-controller.js
+++ b/ext/js/pages/settings/backup-controller.js
@@ -154,7 +154,7 @@ class BackupController {
}
this._settingsExportToken = null;
- const fileName = `yomichan-settings-${this._getSettingsExportDateString(date, '-', '-', '-', 6)}.json`;
+ const fileName = `yomitan-settings-${this._getSettingsExportDateString(date, '-', '-', '-', 6)}.json`;
const blob = new Blob([JSON.stringify(data, null, 4)], {type: 'application/json'});
this._saveBlob(blob, fileName);
}