Commit 4c362389 authored by Andreas Heimann's avatar Andreas Heimann

fixed urls

parent 799c3776
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
<script> <script>
import { remote } from 'electron'; import { remote } from 'electron';
const { clipboard } = remote; const { clipboard, shell } = remote;
export default { export default {
name: 'SongItem', name: 'SongItem',
......
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
openOnSpinShare: function() { openOnSpinShare: function() {
if(this.isSpinShare) { if(this.isSpinShare) {
if(this.isSpinShare.includes("spinshare_")) { if(this.isSpinShare.includes("spinshare_")) {
shell.openExternal("https://spinsha.re/report/song/" + this.isSpinShare); shell.openExternal("https://spinsha.re/song/" + this.isSpinShare);
} }
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment