Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

format profile.icon so that mastodon can read it #32

Merged
merged 3 commits into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Unreleased

### Fixed

* Improper profile icon format prevented useAvatar profile icon changes from appearing in Mastodon

## v2.13.1 (2022-10-27)

### Fixed
Expand Down
5 changes: 2 additions & 3 deletions source/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -585,9 +585,8 @@ export class ImmersClient extends window.EventTarget {
throw new Error('Invalid avatar')
}
const profileUpdate = { avatar }
const icon = ImmersClient.URLFromProperty(avatar.icon)
if (icon) {
profileUpdate.icon = icon
if (avatar.icon) {
profileUpdate.icon = avatar.icon
}
return this.activities.updateProfile(profileUpdate)
}
Expand Down