mirror of
https://github.com/Zaarrg/stremio-community-v5.git
synced 2026-04-25 10:52:57 +00:00
Fixed SubtitleDropped using decoded utf8 as msg
- Fixed SubtitleDropped using decoded utf8 as msg causing a wrong path to be shown in the ui - Updated readme as chocolatey was not updated in a long time.
This commit is contained in:
parent
9cef682930
commit
904c3f696c
2 changed files with 3 additions and 2 deletions
|
|
@ -115,8 +115,9 @@
|
||||||
# Uninstall
|
# Uninstall
|
||||||
scoop uninstall stremio-desktop-v5
|
scoop uninstall stremio-desktop-v5
|
||||||
```
|
```
|
||||||
4. 🍫 **Chocolatey**
|
4. ~~🍫 **Chocolatey**~~
|
||||||
```shell
|
```shell
|
||||||
|
⚠️ Note: Chocolatey is not updated use scoop or a other installation method!
|
||||||
# Install
|
# Install
|
||||||
choco install stremio-desktop-v5 -y
|
choco install stremio-desktop-v5 -y
|
||||||
# Update
|
# Update
|
||||||
|
|
|
||||||
|
|
@ -513,7 +513,7 @@ static void SetupWebMessageHandler()
|
||||||
HandleEvent("mpv-command", subaddArgs);
|
HandleEvent("mpv-command", subaddArgs);
|
||||||
json j;
|
json j;
|
||||||
j["type"] = "SubtitleDropped";
|
j["type"] = "SubtitleDropped";
|
||||||
j["path"] = decodedFilePathUtf8;
|
j["path"] = utf8FilePath;
|
||||||
SendToJS("SubtitleDropped", j);
|
SendToJS("SubtitleDropped", j);
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue