AddChannel: fix sig mismatch

This commit is contained in:
Liam Fitzgerald 2021-02-17 11:36:00 +10:00
parent 899ead25fb
commit 57dfc24882
No known key found for this signature in database
GPG Key ID: D390E12C61D1CFFB

View File

@ -78,7 +78,7 @@ export function NewChannel(props: NewChannelProps & RouteComponentProps) {
};
const resource = resourceFromPath(group);
writers = _.compact(writers);
writers = _.compact(writers).map(s => `~${s}`);
const us = `~${window.ship}`;
if(values.writePerms === 'self') {
await api.groups.addTag(resource, tag, [us]);