mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
🐛 Fixed multiple labelIds not working on message -> getAll (#916)
This commit is contained in:
parent
512fe4ea70
commit
b01621bc80
|
@ -476,7 +476,7 @@ export class Gmail implements INodeType {
|
|||
if (qs.labelIds == '') {
|
||||
delete qs.labelIds;
|
||||
} else {
|
||||
qs.labelIds = (qs.labelIds as string[]).join(',');
|
||||
qs.labelIds = qs.labelIds as string[];
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue