mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(Zulip Node): Fix a typo preventing some messages from updating (#7078)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
@@ -3,5 +3,5 @@ export interface IMessage {
|
|||||||
to?: string;
|
to?: string;
|
||||||
topic?: string;
|
topic?: string;
|
||||||
content?: string;
|
content?: string;
|
||||||
propagat_mode?: string;
|
propagate_mode?: string;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -167,7 +167,7 @@ export class Zulip implements INodeType {
|
|||||||
body.content = updateFields.content as string;
|
body.content = updateFields.content as string;
|
||||||
}
|
}
|
||||||
if (updateFields.propagateMode) {
|
if (updateFields.propagateMode) {
|
||||||
body.propagat_mode = snakeCase(updateFields.propagateMode as string);
|
body.propagate_mode = snakeCase(updateFields.propagateMode as string);
|
||||||
}
|
}
|
||||||
if (updateFields.topic) {
|
if (updateFields.topic) {
|
||||||
body.topic = updateFields.topic as string;
|
body.topic = updateFields.topic as string;
|
||||||
|
|||||||
Reference in New Issue
Block a user