diff --git a/internal/api/gql/v3/resolvers/mutation/mutation.emoteset.go b/internal/api/gql/v3/resolvers/mutation/mutation.emoteset.go index 85e33b9a..cd4df7b7 100644 --- a/internal/api/gql/v3/resolvers/mutation/mutation.emoteset.go +++ b/internal/api/gql/v3/resolvers/mutation/mutation.emoteset.go @@ -32,7 +32,7 @@ func (r *Resolver) CreateEmoteSet(ctx context.Context, userID primitive.ObjectID SetName(input.Name). SetPrivileged(isPrivileged). SetOwnerID(userID). - SetCapacity(300) + SetCapacity(1000) // Execute mutation if err := r.Ctx.Inst().Mutate.CreateEmoteSet(ctx, b, mutate.EmoteSetMutationOptions{ diff --git a/internal/api/rest/v2/routes/auth/youtube.verify.go b/internal/api/rest/v2/routes/auth/youtube.verify.go index 59014115..37d7d4aa 100644 --- a/internal/api/rest/v2/routes/auth/youtube.verify.go +++ b/internal/api/rest/v2/routes/auth/youtube.verify.go @@ -87,7 +87,7 @@ func (r *youtubeVerify) Handler(ctx *rest.Ctx) rest.APIError { ID: channel.Id, Platform: structures.UserConnectionPlatformYouTube, LinkedAt: time.Now(), - EmoteSlots: 600, + EmoteSlots: 1000, EmoteSetID: tw.EmoteSetID, // infer set from twitch conn if it exists }).SetID(channel.Id). SetPlatform(structures.UserConnectionPlatformYouTube). diff --git a/internal/api/rest/v3/routes/auth/auth.route.go b/internal/api/rest/v3/routes/auth/auth.route.go index e70ee2e4..2ca1fc91 100644 --- a/internal/api/rest/v3/routes/auth/auth.route.go +++ b/internal/api/rest/v3/routes/auth/auth.route.go @@ -287,7 +287,7 @@ func formatUserConnection(id string, platform structures.UserConnectionPlatform, ID: id, Platform: platform, LinkedAt: time.Now(), - EmoteSlots: 600, + EmoteSlots: 1000, Data: b, Grant: &structures.UserConnectionGrant{ AccessToken: grant.AccessToken,