diff --git a/notifications_client.py b/notifications_client.py index 02765120a..3fe4e7420 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -353,6 +353,8 @@ def _showLocalBox(boxName: str, startPostIndex=0, noOfPosts=10) -> None: continue index.append(f) break + if not index: + print('You have no ' + boxName + ' posts yet.') maxPostIndex = len(index) index.sort(reverse=True) for pos in range(startPostIndex, startPostIndex + noOfPosts):