You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, SlackDB doesn't guard against its users fucking themselves over by posting values that match the key schema. Unlike when regular users do this through their Slack client, values posted through SlackDB will appear under the name of the bot user. As a result, when SlackDB searches for a key with the only_bot? flag set, it will confuse itself into thinking a thread value is actually a key (if it matches the schema).
We should screen all values passed into the functions create\6, update\4, and append\4 and return an error if any element of the list matches the key schema (specified by the regex attribute @key_schema)
The text was updated successfully, but these errors were encountered:
Currently, SlackDB doesn't guard against its users fucking themselves over by posting values that match the key schema. Unlike when regular users do this through their Slack client, values posted through SlackDB will appear under the name of the bot user. As a result, when SlackDB searches for a key with the
only_bot?
flag set, it will confuse itself into thinking a thread value is actually a key (if it matches the schema).We should screen all values passed into the functions
create\6
,update\4
, andappend\4
and return an error if any element of the list matches the key schema (specified by the regex attribute@key_schema
)The text was updated successfully, but these errors were encountered: