when member in telegram group has already sent a photo in to telegram group , now he edits the image and updates caption text with EDIT option in telegram , the new updated caption he made is needed in google sheets.
Now already using below for Caption which is working fine, but when the image is EDITED its not capturing
var data = JSON.parse(e.postData.contents);
var caption = data.message.caption ;
SpreadsheetApp.openById(ssId).getSheets()[0].appendRow([new Date(),caption ]);