diff options
-rw-r--r-- | pttbbs/mbbsd/board.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pttbbs/mbbsd/board.c b/pttbbs/mbbsd/board.c index 5ecb950d..0d020f38 100644 --- a/pttbbs/mbbsd/board.c +++ b/pttbbs/mbbsd/board.c @@ -1413,9 +1413,8 @@ show_brdlist(int head, int clsflag, int newflag) if (0) // don't move this line -- preserved for next "else". #endif outs("ĀR "); - // since nuser is not updated in-time, '1' may be caused by - // user who just left board. - else if (B_BH(ptr)->nuser <= 1) + // Note the nuser is not updated realtime, or have some bug. + else if (B_BH(ptr)->nuser < 1) prints(" %c ", B_BH(ptr)->bvote ? 'V' : ' '); else if (B_BH(ptr)->nuser <= 10) prints("%2d ", B_BH(ptr)->nuser); |