Преглед на файлове

fix cli - no in_series on video

Mokhtar Naamani преди 3 години
родител
ревизия
d8e1eb8112
променени са 2 файла, в които са добавени 0 реда и са изтрити 2 реда
  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(),