Skip to content

Commit

Permalink
fix: string to int
Browse files Browse the repository at this point in the history
  • Loading branch information
jyoo0515 committed Feb 17, 2024
1 parent e24ffad commit ac0c7dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proto/topic.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ message TopicDTO {
int32 id = 1;
string title = 2;
string thumbnail_url = 3;
repeated string sentence_ids = 4;
repeated string scene_ids = 5;
repeated int32 sentence_ids = 4;
repeated int32 scene_ids = 5;
}

message ListTopicsRequest {
Expand Down

0 comments on commit ac0c7dc

Please sign in to comment.