mirror of
https://github.com/NoCrypt/migu.git
synced 2026-03-11 17:45:32 +00:00
fix: verification error
This commit is contained in:
parent
d40df8a1ff
commit
62544d7754
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Miru",
|
||||
"version": "4.4.1",
|
||||
"version": "4.4.2",
|
||||
"author": "ThaUnknown_ <ThaUnknown@users.noreply.github.com>",
|
||||
"description": "Stream anime torrents, real-time with no waiting for downloads.",
|
||||
"main": "build/main.js",
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class TorrentClient extends WebTorrent {
|
|||
|
||||
loadLastTorrent () {
|
||||
const torrent = localStorage.getItem('torrent')
|
||||
if (torrent) this.addTorrent(new Uint8Array(JSON.parse(torrent)), localStorage.getItem('lastFinished'))
|
||||
if (torrent) this.addTorrent(new Uint8Array(JSON.parse(torrent)), JSON.parse(localStorage.getItem('lastFinished')))
|
||||
}
|
||||
|
||||
handleTorrent (torrent) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue