HandleDownloadData adds the data for a remote file into a Matterbridge gateway message.
(logger *logrus.Entry, msg *config.Message, name, comment, url string, data *[]byte, general *config.Protocol)
| 174 | |
| 175 | // HandleDownloadData adds the data for a remote file into a Matterbridge gateway message. |
| 176 | func HandleDownloadData(logger *logrus.Entry, msg *config.Message, name, comment, url string, data *[]byte, general *config.Protocol) { |
| 177 | HandleDownloadData2(logger, msg, name, "", comment, url, data, general) |
| 178 | } |
| 179 | |
| 180 | // HandleDownloadData adds the data for a remote file into a Matterbridge gateway message. |
| 181 | func HandleDownloadData2(logger *logrus.Entry, msg *config.Message, name, id, comment, url string, data *[]byte, general *config.Protocol) { |
no test coverage detected