about summary refs log tree commit homepage
path: root/lib/PublicInbox
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox')
-rw-r--r--lib/PublicInbox/Inbox.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/PublicInbox/Inbox.pm b/lib/PublicInbox/Inbox.pm
index cde46258..0d28dd04 100644
--- a/lib/PublicInbox/Inbox.pm
+++ b/lib/PublicInbox/Inbox.pm
@@ -333,4 +333,16 @@ sub recent {
         search($self)->{over_ro}->recent($opts, $after, $before);
 }
 
+sub modified {
+        my ($self) = @_;
+        if (my $srch = search($self)) {
+                my $msgs = $srch->{over_ro}->recent({limit => 1});
+                if (my $smsg = $msgs->[0]) {
+                        return $smsg->{ts};
+                }
+                return time;
+        }
+        git($self)->modified; # v1
+}
+
 1;