From 41b2658ca3f76cb08b19359298d12c2e11ce415c Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Sat, 20 Apr 2019 22:02:30 -0400 Subject: [PATCH] renamed Claim.claim_list -> Claim.collection and add Video.duration --- v2/proto/claim.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v2/proto/claim.proto b/v2/proto/claim.proto index d88a10b..89faca3 100644 --- a/v2/proto/claim.proto +++ b/v2/proto/claim.proto @@ -6,7 +6,7 @@ message Claim { oneof type { Stream stream = 1; Channel channel = 2; - ClaimList claim_list = 3; + ClaimList collection = 3; ClaimReference repost = 4; } string title = 8; @@ -84,7 +84,8 @@ message Image { message Video { uint32 width = 1; uint32 height = 2; - Audio audio = 3; + uint32 duration = 3; + Audio audio = 15; } message Audio {