start counting at 1
[org.ibex.mail.git] / src / org / ibex / mail / protocol / NNTP.java
index 3f1eb9b..048efba 100644 (file)
@@ -88,7 +88,7 @@ public class NNTP {
         private Group getgroup(String s) {
             Mailbox box = root;
             for(StringTokenizer st = new StringTokenizer(s, "."); st.hasMoreTokens(); box = box.slash(st.nextToken(), false));
-            return new Group(s, true, 0, box.count(Query.all()), box.count(Query.all()));
+            return new Group(s, true, 1, box.count(Query.all()), box.count(Query.all()));
         }
 
         public Group[]  newgroups(Date d, String[] distributions) { /* FEATURE */ return new Group[] { }; }