diff options
| author | 2011-12-28 22:07:05 +0100 | |
|---|---|---|
| committer | 2011-12-28 22:07:05 +0100 | |
| commit | c3b31113508a687d0070f54951f53f9cd458f734 (patch) | |
| tree | 201ae7d4b848448096f7341f704c4318dbe8ce02 | |
| parent | fso update (diff) | |
| download | pyload-c3b31113508a687d0070f54951f53f9cd458f734.tar.xz | |
little fix
| -rw-r--r-- | module/plugins/hoster/FilesonicCom.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/module/plugins/hoster/FilesonicCom.py b/module/plugins/hoster/FilesonicCom.py index 8f8c9b43d..fd6a1b833 100644 --- a/module/plugins/hoster/FilesonicCom.py +++ b/module/plugins/hoster/FilesonicCom.py @@ -28,7 +28,7 @@ def getInfo(urls):              response = json_loads(getURL(check_url, decode=True))
              for item in response["FSApi_Link"]["getInfo"]["response"]["links"]:
                  if item["status"] != "AVAILABLE":
 -                    result.append((None, 0, 1, ids[str(item["id"])]))
 +                    result.append((ids[str(item["id"])], 0, 1, ids[str(item["id"])]))
                  else:
                      result.append((item["filename"], item["size"], 2, ids[str(item["id"])]))
          yield result
 | 
