File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1385,7 +1385,7 @@ impl MonoApiService {
13851385 . await
13861386 . map_err ( |e| MegaError :: with_message ( format ! ( "{e}" ) ) ) ?;
13871387
1388- self . save_import_ref ( & mega_path, & ref_name, & ref_hash. clone ( ) )
1388+ self . save_import_ref ( & mega_path, & ref_name, & ref_hash)
13891389 . await ?;
13901390
13911391 let shared = Arc :: new ( tokio:: sync:: Mutex :: new ( 0 ) ) ;
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ pub struct ConversationItem {
1111 pub username : String ,
1212 pub conv_type : ConvType ,
1313 pub comment : Option < String > ,
14+ pub resolved : Option < bool > ,
1415 pub created_at : i64 ,
1516 pub updated_at : i64 ,
1617 pub grouped_reactions : Vec < ReactionItem > ,
@@ -27,6 +28,7 @@ impl ConversationItem {
2728 username : conversation. username ,
2829 conv_type : conversation. conv_type . into ( ) ,
2930 comment : conversation. comment ,
31+ resolved : conversation. resolved ,
3032 created_at : conversation. created_at . and_utc ( ) . timestamp ( ) ,
3133 updated_at : conversation. updated_at . and_utc ( ) . timestamp ( ) ,
3234 grouped_reactions : vec ! [ ] ,
You can’t perform that action at this time.
0 commit comments