Merge pull request #5374 from pangeachat/convert-activity-avatar-url-to-string

fix: convert activity URL to string in create room request
This commit is contained in:
ggurdin 2026-01-23 09:29:39 -05:00 committed by GitHub
commit 5f42aa9568
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@ extension CoursePlanRoomExtension on Room {
if (activity.imageURL != null)
StateEvent(
type: EventTypes.RoomAvatar,
content: {'url': activity.imageURL!},
content: {'url': activity.imageURL!.toString()},
),
if (role != null)
StateEvent(

View file

@ -6,7 +6,7 @@ description: Learn a language while texting your friends.
# Pangea#
publish_to: none
# On version bump also increase the build number for F-Droid
version: 4.1.16+3
version: 4.1.16+4
environment:
sdk: ">=3.0.0 <4.0.0"