Skip to content

Commit deb5caa

Browse files
committed
fixed note renaming issue
(multiple uploads of identical file; e.g. artist and commissioner)
1 parent 57e2892 commit deb5caa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

background.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ async function hySetNotes(hash, notes) {
2929
headers: headers,
3030
body: JSON.stringify({
3131
notes: notes,
32-
hash: hash
32+
hash: hash,
33+
merge_cleverly: true
3334
})
3435
}
3536
);

content.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ function getTags() {
33
var tags = [];
44
tags.push('site:furaffinity');
55
tags.push('import:' + new Date().toISOString());
6-
tags.push('importer:fahy');
6+
tags.push('importer:https://github.com/femtoAmpere/fahy');
77

88
const pageUrl = window.location.href.endsWith('/') ? window.location.href : window.location.href + '/';
99
tags.push('url:' + pageUrl);

0 commit comments

Comments
 (0)