mirror of https://gitlab.com/litecord/litecord.git
Embed fixes
This commit is contained in:
parent
66efd78018
commit
a7dc9e01dc
|
|
@ -407,6 +407,9 @@ async def _create_message(channel_id):
|
||||||
await _dm_pre_dispatch(channel_id, user_id)
|
await _dm_pre_dispatch(channel_id, user_id)
|
||||||
await _dm_pre_dispatch(channel_id, guild_id)
|
await _dm_pre_dispatch(channel_id, guild_id)
|
||||||
|
|
||||||
|
if payload['webhook_id'] == None:
|
||||||
|
payload.pop('webhook_id', None)
|
||||||
|
|
||||||
await app.dispatcher.dispatch('channel', channel_id,
|
await app.dispatcher.dispatch('channel', channel_id,
|
||||||
'MESSAGE_CREATE', payload)
|
'MESSAGE_CREATE', payload)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ class EmbedURL:
|
||||||
|
|
||||||
EMBED_FOOTER = {
|
EMBED_FOOTER = {
|
||||||
'text': {
|
'text': {
|
||||||
'type': 'string', 'minlength': 1, 'maxlength': 128, 'required': True},
|
'type': 'string', 'minlength': 1, 'maxlength': 1024, 'required': True},
|
||||||
|
|
||||||
'icon_url': {
|
'icon_url': {
|
||||||
'coerce': EmbedURL, 'required': False,
|
'coerce': EmbedURL, 'required': False,
|
||||||
|
|
@ -65,7 +65,7 @@ EMBED_THUMBNAIL = EMBED_IMAGE
|
||||||
|
|
||||||
EMBED_AUTHOR = {
|
EMBED_AUTHOR = {
|
||||||
'name': {
|
'name': {
|
||||||
'type': 'string', 'minlength': 1, 'maxlength': 128, 'required': False
|
'type': 'string', 'minlength': 1, 'maxlength': 256, 'required': False
|
||||||
},
|
},
|
||||||
'url': {
|
'url': {
|
||||||
'coerce': EmbedURL, 'required': False,
|
'coerce': EmbedURL, 'required': False,
|
||||||
|
|
@ -79,10 +79,10 @@ EMBED_AUTHOR = {
|
||||||
|
|
||||||
EMBED_FIELD = {
|
EMBED_FIELD = {
|
||||||
'name': {
|
'name': {
|
||||||
'type': 'string', 'minlength': 1, 'maxlength': 128, 'required': True
|
'type': 'string', 'minlength': 1, 'maxlength': 256, 'required': True
|
||||||
},
|
},
|
||||||
'value': {
|
'value': {
|
||||||
'type': 'string', 'minlength': 1, 'maxlength': 128, 'required': True
|
'type': 'string', 'minlength': 1, 'maxlength': 1024, 'required': True
|
||||||
},
|
},
|
||||||
'inline': {
|
'inline': {
|
||||||
'type': 'boolean', 'required': False, 'default': True,
|
'type': 'boolean', 'required': False, 'default': True,
|
||||||
|
|
@ -91,10 +91,10 @@ EMBED_FIELD = {
|
||||||
|
|
||||||
EMBED_OBJECT = {
|
EMBED_OBJECT = {
|
||||||
'title': {
|
'title': {
|
||||||
'type': 'string', 'minlength': 1, 'maxlength': 128, 'required': False},
|
'type': 'string', 'minlength': 1, 'maxlength': 256, 'required': False},
|
||||||
# NOTE: type set by us
|
# NOTE: type set by us
|
||||||
'description': {
|
'description': {
|
||||||
'type': 'string', 'minlength': 1, 'maxlength': 1024, 'required': False,
|
'type': 'string', 'minlength': 1, 'maxlength': 2048, 'required': False,
|
||||||
},
|
},
|
||||||
'url': {
|
'url': {
|
||||||
'coerce': EmbedURL, 'required': False,
|
'coerce': EmbedURL, 'required': False,
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,10 @@ class Color:
|
||||||
"""Give the actual RGB integer encoding this color."""
|
"""Give the actual RGB integer encoding this color."""
|
||||||
return int('%02x%02x%02x' % (self.red, self.green, self.blue), 16)
|
return int('%02x%02x%02x' % (self.red, self.green, self.blue), 16)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def to_json(self):
|
||||||
|
return self.value
|
||||||
|
|
||||||
def __int__(self):
|
def __int__(self):
|
||||||
return self.value
|
return self.value
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue