Removed parseMessage function

This commit is contained in:
freearhey 2020-05-26 15:23:36 +03:00
parent de7a9c2a4a
commit f66eac0457
1 changed files with 0 additions and 16 deletions

View File

@ -188,22 +188,6 @@ helper.writeToLog = function (country, msg, url) {
this.appendToFile('error.log', now.toISOString() + ' ' + line + '\n')
}
helper.parseMessage = function (err, u) {
if (!err || !err.message) return
const msgArr = err.message.split('\n')
if (msgArr.length === 0) return
const line = msgArr.find(line => {
return line.indexOf(u) === 0
})
if (!line) return
return line.replace(`${u}: `, '')
}
helper.filterPlaylists = function (arr, include = '', exclude = '') {
if (include) {
const included = include.split(',').map(filename => `channels/${filename}.m3u`)