File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/SocketLabs/InjectionApi Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,10 @@ public string ResponseMessage
98
98
return "No valid message body was found in the message" ;
99
99
100
100
case SendResult . InvalidTemplateId :
101
- return "MetadataOrTagsAreTooLarge => “Metadata and tags exceed 12.5KB" ;
101
+ return "An invalid TemplateId was found in the message" ;
102
+
103
+ case SendResult . MetadataOrTagsAreTooLarge :
104
+ return "Metadata and tags exceed 12.5KB" ;
102
105
103
106
case SendResult . TemplateHasNoContent :
104
107
return "The specified TemplateId has no content for the message" ;
Original file line number Diff line number Diff line change @@ -194,5 +194,7 @@ public enum SendResult
194
194
/// Invalid metadata found
195
195
/// </summary>
196
196
MessageValidationInvalidMetadata ,
197
+ /** Metadata and tags exceed 12.5KB */
198
+ MetadataOrTagsAreTooLarge
197
199
}
198
200
}
You can’t perform that action at this time.
0 commit comments