1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2025-04-05 11:37:45 +00:00

Discord: fix wrong hash for discovery splash url

This commit is contained in:
mavolin 2020-05-24 17:17:01 +02:00 committed by diamondburned
parent 19b970bad7
commit 46b001548d

View file

@ -178,18 +178,18 @@ func (g Guild) SplashURLWithType(t ImageType) string {
g.ID.String() + "/" + t.format(g.Splash) g.ID.String() + "/" + t.format(g.Splash)
} }
// DiscoverySplashURL returns the URL to the guild splash, which is the invite // DiscoverySplashURL returns the URL to the guild discovery splash.
// page's background. This will always return a link to a PNG file. // This will always return a link to a PNG file.
func (g Guild) DiscoverySplashURL() string { func (g Guild) DiscoverySplashURL() string {
return g.DiscoverySplashURLWithType(PNGImage) return g.DiscoverySplashURLWithType(PNGImage)
} }
// DiscoverySplashURLWithType returns the URL to the guild splash, which is the // DiscoverySplashURLWithType returns the URL to the guild discovery splash,
// invite page's background, using the passed ImageType. // using the passed ImageType.
// //
// Supported ImageTypes: PNG, JPEG, WebP // Supported ImageTypes: PNG, JPEG, WebP
func (g Guild) DiscoverySplashURLWithType(t ImageType) string { func (g Guild) DiscoverySplashURLWithType(t ImageType) string {
if g.Splash == "" { if g.DiscoverySplash == "" {
return "" return ""
} }
@ -263,18 +263,18 @@ func (g GuildPreview) SplashURLWithType(t ImageType) string {
g.ID.String() + "/" + t.format(g.Splash) g.ID.String() + "/" + t.format(g.Splash)
} }
// DiscoverySplashURL returns the URL to the guild splash, which is the invite // DiscoverySplashURL returns the URL to the guild discovery splash.
// page's background. This will always return a link to a PNG file. // This will always return a link to a PNG file.
func (g GuildPreview) DiscoverySplashURL() string { func (g GuildPreview) DiscoverySplashURL() string {
return g.DiscoverySplashURLWithType(PNGImage) return g.DiscoverySplashURLWithType(PNGImage)
} }
// DiscoverySplashURLWithType returns the URL to the guild splash, which is the // DiscoverySplashURLWithType returns the URL to the guild discovery splash,
// invite page's background, using the passed ImageType. // using the passed ImageType.
// //
// Supported ImageTypes: PNG, JPEG, WebP // Supported ImageTypes: PNG, JPEG, WebP
func (g GuildPreview) DiscoverySplashURLWithType(t ImageType) string { func (g GuildPreview) DiscoverySplashURLWithType(t ImageType) string {
if g.Splash == "" { if g.DiscoverySplash == "" {
return "" return ""
} }