M3U Datei erstellen
()
| 1772 | |
| 1773 | // M3U Datei erstellen |
| 1774 | func createM3UFile() { |
| 1775 | |
| 1776 | showInfo("XEPG:" + fmt.Sprintf("Create M3U file (%s)", System.File.M3U)) |
| 1777 | _, err := buildM3U([]string{}) |
| 1778 | if err != nil { |
| 1779 | ShowError(err, 000) |
| 1780 | } |
| 1781 | |
| 1782 | saveMapToJSONFile(System.File.URLS, Data.Cache.StreamingURLS) |
| 1783 | |
| 1784 | return |
| 1785 | } |
| 1786 | |
| 1787 | // XEPG Datenbank bereinigen |
| 1788 | func cleanupXEPG() { |
no test coverage detected