🐛 Fixed multiple labelIds not working on message -> getAll (#916)

This commit is contained in:
Rupenieks 2020-09-02 13:04:43 +02:00 committed by GitHub
parent 512fe4ea70
commit b01621bc80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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[];
}
}