sale13 / romcollectionbrowser

Automatically exported from code.google.com/p/romcollectionbrowser
GNU General Public License v2.0
0 stars 0 forks source link

gamesdb.net scrapper broken for GBA roms #198

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Create a new rom collection (my case a GBA one)
2.Start Import using only thegamesdb.net

What is the expected output? What do you see instead?
Games Description and Artwork of most or at lease some to be scrapped, but not 
a single game is.

What version of the product are you using? On what operating system?
Ubuntu, Kodi Helix, Last stable

Please provide any additional information below.
The problem is the scrapper is sending the wrong platform as in the log show 
this url:
"http://thegamesdb.net/api/GetGame.php?name=Sword of Mana&platform=Nintendo 
Gameboy Advance"
the thegamesdb.net uses "Game Boy" instead of "Gameboy", this causes failure 
for all requests.

Original issue reported on code.google.com by casa.rez...@gmail.com on 6 Feb 2015 at 1:14

GoogleCodeExporter commented 8 years ago

Original comment by maloep on 9 Mar 2015 at 6:01

GoogleCodeExporter commented 8 years ago
Until the official fix you can manually edit config.py in the scripts 
resource/lib folder.

Replace on line 62:
'Game Boy Advance' : ['12', 'Nintendo Gameboy Advance', 'gba'],

with:
'Game Boy Advance' : ['12', 'Nintendo Game Boy Advance', 'gba'],  

Original comment by adrian.j...@googlemail.com on 13 Apr 2015 at 2:01