Prefer message from row's json object
This commit is contained in:
parent
ebcac70341
commit
14d35c7ec3
@ -1,8 +1,16 @@
|
||||
const parseEventData = (eventData) => {
|
||||
try {
|
||||
let json = JSON.parse(eventData)
|
||||
if (!json.message && json.json) {
|
||||
json.message = JSON.stringify(json.json)
|
||||
let message;
|
||||
if (json.json && json.json.message) {
|
||||
message = json.json.message
|
||||
} else if (json.message) {
|
||||
message = json.message
|
||||
} else if (json.json) {
|
||||
message = JSON.stringify(json.json)
|
||||
}
|
||||
if (message) {
|
||||
json.message = message
|
||||
}
|
||||
return json
|
||||
} catch (e) {
|
||||
|
Loading…
Reference in New Issue
Block a user