Code: Select all
INFO::[decoder:121] Erreur CRC dans [email protected] (FFFFFFFF2F249386 -> 2F249386)
Although the article is tagged as corrupted and missing, the downloaded file is valid, which is normal since the articles tagged as corrupted are valid.
For information, I am running on 32 bits PC
Code: Select all
Linux benjarobin 3.8.8-2-ARCH #1 SMP PREEMPT Tue Apr 23 11:35:43 CEST 2013 i686 GNU/Linux
Edit2: To fix it (tested and working), I added this line after line 299
Code: Select all
_partcrc = _partcrc[-8:]
Code: Select all
_partcrc = '00000000' + yend[crcname].upper()
_partcrc = _partcrc[-8:]