asciidisco / plugin.video.netflix

Inputstream based Netflix plugin for Kodi
MIT License
1.24k stars 225 forks source link

The settings dialog displays the text "30059c" instead of "Switch accounts" #604

Open Paco8 opened 5 years ago

Paco8 commented 5 years ago

I'm submitting a ...

General infomration

Prerequisites

Description

The addon settings dialog displays "30059c" instead of "Switch accounts"

I think this is caused because in the file settings.xml, line 6, it says label="30059c". Removing the c after the number fixes the problem.

Steps to Reproduce

  1. Open the addon settings.

Expected behavior: [What you expected to happen]

The text "Switch accounts" should appear in the first option.

Actual behavior: [What actually happened]

It displays "30059c"

Installation

Operating System

Additional informatin on the environment

I'm using Windows 10.

ghost commented 5 years ago

Same probleme here, using newest Libreelec

Com3Carne commented 5 years ago

Same, using the latest version of OSMC.

VicenteVeigaEY commented 5 years ago

Same here. Tested on Libreelec with different versions of this plugin...

johnmcchavs commented 5 years ago

I changed 30059c to 30059. It changed the menu, but still I can't set my account : it just closes the windows (Kodi 18.0 on Lubuntu)

jcreixell commented 5 years ago

Same here with raspbian stretch

adq commented 5 years ago

Check your logs; if you see stuff like "ImportError: No module named Cryptodome.Random",

try running "pip2 install pycryptodomex" from the commandline and restart kodi.

akhlan commented 5 years ago

Same issue :-(

OSMC 18-RC1 / Rpi3

http://paste.osmc.tv/ekapadadeb.vhdl

jakermx commented 5 years ago

Edit your settings.xml file located on your .kodi/userdata/addon_data directory, and look for 30059c and replace it with 30059 and that's it

ccamara commented 5 years ago

I could not find the string 30059c on .kodi/userdata/addon_data/plugin.video.netflix/settings.xml, but since you were talking about a non-translated string, it gave me the clue to fix it: I reverted the interface into English, and even though the label was still missing, it worked when clicking on it!

Galatean commented 5 years ago

I could not find the string 30059c on .kodi/userdata/addon_data/plugin.video.netflix/settings.xml, but since you were talking about a non-translated string, it gave me the clue to fix it: I reverted the interface into English, and even though the label was still missing, it worked when clicking on it!

For reference, there's a separate settings.xml in .kodi/addons/plugin.video.netflix/resources That's the one with the typo. Or at least, it was for me.

jakermx commented 5 years ago

FYI

.kodi/addons/ Directory have default settings and plugin lib filles .kodi/userdata/addon_data have current addon settings

so if you want to modify a library you should modify a file on .kodi/addons/ but if you want to modify or inspect your deviuce current settings or log files, your should llook at .kodi/userdata/addon_data

Cheers