Skip to content

Commit

Permalink
Fixes #510
Browse files Browse the repository at this point in the history
Version -> 0.8.394
  • Loading branch information
zevlg committed Dec 20, 2024
1 parent 80f5d49 commit 3836cff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion telega-msg.el
Original file line number Diff line number Diff line change
Expand Up @@ -1515,7 +1515,8 @@ For interactive use only."
(lambda (reply)
(let ((messages (plist-get reply :messages)))
(setq telega--favorite-messages-storage-message
(seq-first messages))
(unless (seq-empty-p messages)
(seq-first messages)))
(when telega--favorite-messages-storage-message
(let ((file (telega-msg--content-file
telega--favorite-messages-storage-message)))
Expand Down
4 changes: 2 additions & 2 deletions telega.el
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
;; Keywords: comm
;; Package-Requires: ((emacs "27.1") (visual-fill-column "1.9") (transient "0.3.0"))
;; URL: https://github.com/zevlg/telega.el
;; Version: 0.8.393
(defconst telega-version "0.8.393")
;; Version: 0.8.394
(defconst telega-version "0.8.394")
(defconst telega-server-min-version "0.7.7")
(defconst telega-tdlib-min-version "1.8.39")
(defconst telega-tdlib-max-version nil)
Expand Down

0 comments on commit 3836cff

Please sign in to comment.