Skip to content

Commit

Permalink
fix(diaspora): fix #117
Browse files Browse the repository at this point in the history
  • Loading branch information
Mte90 committed Dec 4, 2020
1 parent 760204d commit a0d0264
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "This extension reimplement the share feature with Container support and over 14+ social networks",
"manifest_version": 2,
"name": "Share Backported",
"version": "2.1.0",
"version": "2.1.1",
"icons": {
"16": "icon-dark.svg",
"24": "icon-dark.svg",
Expand Down
5 changes: 4 additions & 1 deletion modal/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,10 @@ function onClick(event, item, tab) {
break;
}

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

Promise.all([
checkContainerAssignment(newUrl),
Expand Down

0 comments on commit a0d0264

Please sign in to comment.