From 2ec654e6678fd82549ce33cd354f9ed3275c9108 Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Fri, 10 Apr 2026 05:51:09 +0300 Subject: [PATCH] fix: fix rating age type --- proto/movie.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proto/movie.proto b/proto/movie.proto index a75a10d..742736a 100644 --- a/proto/movie.proto +++ b/proto/movie.proto @@ -35,7 +35,7 @@ message Movie { string title = 2; string slug = 3; string poster = 4; - string rating_age = 5; + int32 rating_age = 5; google.protobuf.Timestamp timestamp = 6; } @@ -47,7 +47,7 @@ message MovieDetails { string poster = 5; string banner = 6; int32 duration = 7; - string rating_age = 8; + int32 rating_age = 8; string country = 9; google.protobuf.Timestamp timestamp = 10; }