Skip to content

Commit 822e624

Browse files
committed
Added version to export settings filename
1 parent 0aaf49e commit 822e624

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/options/widgets/general.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function exportSettings() {
2222
options.version = browser.runtime.getManifest().version
2323
let resultString = JSON.stringify(options, null, " ")
2424
exportSettingsElement.href = "data:application/json;base64," + btoa(resultString)
25-
exportSettingsElement.download = "libredirect-settings.json"
25+
exportSettingsElement.download = `libredirect-settings-v${options.version}.json`
2626
return
2727
}
2828
exportSettings()

0 commit comments

Comments
 (0)