1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-18 00:15:46 +01:00

Fix generation of temp filenames. Closes issue #285.

This commit is contained in:
Kris Maglione
2011-01-21 09:10:35 -05:00
parent 70b38cfbcf
commit 6fe80884d8
2 changed files with 4 additions and 2 deletions

View File

@@ -95,7 +95,7 @@ var Config = Module("config", ConfigBase, {
},
get tempFile() {
let prefix = this.name.toLowerCase();
let prefix = this.name;
try {
prefix += "-" + window.content.document.location.hostname;
}