diff options
| -rw-r--r-- | lisp/mastodon.el | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index ce72f34..a76bdf1 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -367,7 +367,8 @@ not, just browse the URL in the normal fashion."            (string-match "^/profile/[[:alpha:]]+$" query)            (string-match "^/p/[[:alpha:]]+/[[:digit:]]+$" query)            (string-match "^/[[:alpha:]]+$" query) -          (string-match "^/u/[[:alpha:]]+$" query))))) +          (string-match "^/u/[[:alpha:]]+$" query) +          (string-match "^/post/[[:digit:]]+$" query)))))  (defun mastodon-live-buffers ()    "Return a list of open mastodon buffers.  | 
