Quellcode durchsuchen

fix cli - no in_series on video

Mokhtar Naamani vor 3 Jahren
Ursprung
Commit
d8e1eb8112
2 geänderte Dateien mit 0 neuen und 2 gelöschten Zeilen
  1. 0 1
      cli/src/commands/content/video.ts
  2. 0 1
      cli/src/commands/content/videos.ts

+ 0 - 1
cli/src/commands/content/video.ts

@@ -18,7 +18,6 @@ export default class VideoCommand extends ContentDirectoryCommandBase {
       displayCollapsedRow({
         'ID': videoId.toString(),
         'InChannel': aVideo.in_channel.toString(),
-        'InSeries': aVideo.in_series.unwrapOr('NONE').toString(),
         'IsCensored': aVideo.is_censored.toString(),
         'CommentsEnabled': aVideo.enable_comments.toString(),
         'PostId': aVideo.video_post_id.toString(),

+ 0 - 1
cli/src/commands/content/videos.ts

@@ -26,7 +26,6 @@ export default class VideosCommand extends ContentDirectoryCommandBase {
         videos.map(([id, v]) => ({
           'ID': id.toString(),
           'InChannel': v.in_channel.toString(),
-          'InSeries': v.in_series.unwrapOr('NONE').toString(),
           'IsCensored': v.is_censored.toString(),
           'CommentsEnabled': v.enable_comments.toString(),
           'PostId': v.video_post_id.toString(),