From 8e9bc0a19cc796238af34e47eee015bf5b8a8aa9 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sat, 29 Dec 2007 23:11:02 -0500 Subject: [PATCH] Correct handling of negative ItemCount (Ticket #60) --- plugin.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugin.py b/plugin.py index 870b139..b7a70fc 100644 --- a/plugin.py +++ b/plugin.py @@ -135,8 +135,6 @@ class Plugin(object): if file_url == anchor: if count > 0: index = i + 1 - elif count < 0: - index = i - 1 else: index = i break -- 2.11.4.GIT