-
Notifications
You must be signed in to change notification settings - Fork 82
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
Fix default avatar URL not working #691
Conversation
@@ -6401,8 +6401,7 @@ public final class dev/kord/core/entity/GuildWidget : dev/kord/core/KordObject, | |||
} | |||
|
|||
public abstract class dev/kord/core/entity/Icon : dev/kord/core/KordObject { | |||
public synthetic fun <init> (ZLdev/kord/rest/route/CdnUrl;Ldev/kord/core/Kord;Lkotlin/jvm/internal/DefaultConstructorMarker;)V | |||
public final fun getAnimated ()Z |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you bring animated
back for binary compatibility? Not sure if it should be deprecated though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks
I readded the Originally I added it by just checking if the The reason why I made it that way: Stickers aren't supported as a And static stickers are also |
This PR changes that now the format must be provided when initializing the
Icon
class, instead of relying on theanimated
property.Fixes #689