diff options
Diffstat (limited to 'mbbsd')
-rw-r--r-- | mbbsd/board.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mbbsd/board.c b/mbbsd/board.c index ed6274a8..e9ef7a66 100644 --- a/mbbsd/board.c +++ b/mbbsd/board.c @@ -143,7 +143,10 @@ check_newpost(boardstat_t * ptr) if (B_TOTAL(ptr) == 0) return 0; ftime = B_LASTPOSTTIME(ptr); - if (ftime > now) + + /* 有些 util, 尤其是 innbbsd, 會用到比較新的 time stamp, + * 只要不太誇張就 ok */ + if (ftime > now + 10) ftime = B_LASTPOSTTIME(ptr) = now - 1; tbrc_list = brc_find_record(ptr->bid, &tbrc_num); |