Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #12

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,17 @@ support. As an alternative you can edit the settings file manually.
2. Open file `addon_data/plugin.video.stash/settings.xml`
3. Change line `<setting id="api_key" default="true" />` to `<setting
id="api_key">[your API Key]</setting>`

### Disable HTTP2
If you have issues with playback feezing Kodi you need to disable HTTP2 in
[advancedsettings.xml](https://kodi.wiki/view/Advancedsettings.xml#network).

Example advancedsettings.xml file:

```
<advancedsettings version="1.0">
<network>
<disablehttp2>true</disablehttp2>
</network>
</advancedsettings>
```