added Information-Field to TV Shows

This commit is contained in:
2026-02-02 14:46:05 +01:00
parent a78501a6a4
commit a6bd718157
4 changed files with 80 additions and 2 deletions
+2
View File
@@ -254,6 +254,7 @@ class BackendApi {
String? resolution,
String? downloadPath,
bool? cliffhanger,
String? information,
}) async {
final payload = <String, dynamic>{
'action': 'set_show_meta',
@@ -261,6 +262,7 @@ class BackendApi {
if (resolution != null) 'resolution': resolution,
if (downloadPath != null) 'download_path': downloadPath,
if (cliffhanger != null) 'cliffhanger': cliffhanger,
if (information != null) 'information': information,
};
await _post(payload);
}