Skip to content

Commit a0d0264

Browse files
committed
fix(diaspora): fix #117
1 parent 760204d commit a0d0264

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "This extension reimplement the share feature with Container support and over 14+ social networks",
44
"manifest_version": 2,
55
"name": "Share Backported",
6-
"version": "2.1.0",
6+
"version": "2.1.1",
77
"icons": {
88
"16": "icon-dark.svg",
99
"24": "icon-dark.svg",

modal/modal.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,10 @@ function onClick(event, item, tab) {
328328
break;
329329
}
330330

331-
newUrl = url.toString();
331+
// https://github.com/Mte90/Share-Backported/issues/117
332+
if (service !== 'diaspora') {
333+
newUrl = url.toString();
334+
}
332335

333336
Promise.all([
334337
checkContainerAssignment(newUrl),

0 commit comments

Comments
 (0)