whatsapp-api-js
Advanced tools
Comparing version 0.6.1-beta.0 to 0.6.1-beta.1
{ | ||
"name": "whatsapp-api-js", | ||
"version": "0.6.1-beta.0", | ||
"version": "0.6.1-beta.1", | ||
"author": "Secreto31126", | ||
@@ -5,0 +5,0 @@ "description": "A Whatsapp Official API helper for Node.js", |
@@ -195,3 +195,3 @@ const Text = require("./text"); | ||
if (title.length > 24) throw new Error("Row title must be 24 characters or less"); | ||
if (description.length > 72) throw new Error("Row description must be 72 characters or less"); | ||
if (description?.length > 72) throw new Error("Row description must be 72 characters or less"); | ||
@@ -198,0 +198,0 @@ this.id = id; |
100929