You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/upload.vue
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -160,11 +160,17 @@ function submitForm () {
160
160
.then((new_torrent) => {
161
161
uploading.value=false;
162
162
163
+
let text ="Torrent uploaded!";
164
+
165
+
if (new_torrent.canonical_info_hash!==new_torrent.info_hash) {
166
+
text+=` Original infohash ${new_torrent.info_hash} has changed because non-standard info dictionary fields were removed. New infohash is ${new_torrent.canonical_info_hash}`;
0 commit comments