diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-11 11:59:10 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-11 11:59:10 +0200 |
commit | 02bcd3de9f04a3b43c8f4d42ce3220b0caa6a776 (patch) | |
tree | e058ed1a7b92e4a7193638c48338e2f43e3ea04d | |
parent | 0d0b5da805b7f77921731a45a39bef41c7a115bd (diff) |
add rough hometown user statuses url regex
-rw-r--r-- | lisp/mastodon.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 31cc0ea..adf5e1e 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -395,6 +395,7 @@ not, just browse the URL in the normal fashion." (string-match "^/c/[[:alnum:]]+$" query) (string-match "^/post/[[:digit:]]+$" query) (string-match "^/comment/[[:digit:]]+$" query) ; lemmy + (string-match "^/user[s]?/[[:alnum:]]+/statuses/[[:digit:]]+$" query) ; hometown (string-match "^/notes/[[:alnum:]]+$" query))))) ; misskey post (defun mastodon-live-buffers () |