Skip to content

Commit

Permalink
Merge tag '0.3.1'
Browse files Browse the repository at this point in the history
Hollo 0.3.1
  • Loading branch information
dahlia committed Dec 13, 2024
2 parents 473cb3a + da0a8b5 commit 32b0aea
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
30 changes: 30 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ To be released.
- The profile page now shows a user's cover image if they have one.


Version 0.3.1
-------------

Released on December 13, 2024.

- Fixed a bug where `Undo(Like)` activities on a `Question` object had not
been handled correctly.

- Fixed a bug where `EmojiReact` activities on a `Question` object had not
been handled correctly.

- Fixed a bug where `Undo(EmojiReact)` activities on a `Question` object had
not been handled correctly.


Version 0.3.0
-------------

Expand Down Expand Up @@ -40,6 +55,21 @@ Released on December 1, 2024.
[#59]: https://github.com/dahlia/hollo/pull/59


Version 0.2.4
-------------

Released on December 13, 2024.

- Fixed a bug where `Undo(Like)` activities on a `Question` object had not
been handled correctly.

- Fixed a bug where `EmojiReact` activities on a `Question` object had not
been handled correctly.

- Fixed a bug where `Undo(EmojiReact)` activities on a `Question` object had
not been handled correctly.


Version 0.2.3
-------------

Expand Down
3 changes: 3 additions & 0 deletions src/federation/inbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,7 @@ export async function onUnliked(
type === "object" &&
(parsed.class === Note ||
parsed.class === Article ||
parsed.class === Question ||
parsed.class === ChatMessage)
) {
const actor = await like.getActor();
Expand Down Expand Up @@ -620,6 +621,7 @@ export async function onEmojiReactionAdded(
object?.type !== "object" ||
(object.class !== Note &&
object.class !== Article &&
object.class !== Question &&
object.class !== ChatMessage)
) {
inboxLogger.debug("Unsupported object on EmojiReact: {objectId}", {
Expand Down Expand Up @@ -685,6 +687,7 @@ export async function onEmojiReactionRemoved(
post?.type !== "object" ||
(post.class !== Note &&
post.class !== Article &&
post.class !== Question &&
post.class !== ChatMessage)
) {
return;
Expand Down

0 comments on commit 32b0aea

Please sign in to comment.