File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2271,7 +2271,7 @@ private void ContextMenuOperate_Opening(object sender, CancelEventArgs e)
22712271 this . AuthorContextMenuItem . Visible = true ;
22722272 this . AuthorContextMenuItem . Text = $ "@{ post ! . ScreenName } ";
22732273 this . RetweetedByContextMenuItem . Visible = post . IsRetweet ;
2274- this . RetweetedByContextMenuItem . Text = $ "@{ post . RetweetedBy } ";
2274+ this . RetweetedByContextMenuItem . Text = post . IsRetweet ? $ "@{ post . RetweetedBy } " : " ";
22752275 }
22762276 var tab = this . CurrentTab ;
22772277 if ( tab . TabType == MyCommon . TabUsageType . DirectMessage || ! this . ExistCurrentPost || post == null || post . IsDm )
@@ -8906,7 +8906,7 @@ private void MenuItemOperate_DropDownOpening(object sender, EventArgs e)
89068906 this . AuthorMenuItem . Visible = true ;
89078907 this . AuthorMenuItem . Text = $ "@{ post ! . ScreenName } ";
89088908 this . RetweetedByMenuItem . Visible = post . IsRetweet ;
8909- this . RetweetedByMenuItem . Text = $ "@{ post . RetweetedBy } ";
8909+ this . RetweetedByMenuItem . Text = post . IsRetweet ? $ "@{ post . RetweetedBy } " : " ";
89108910 }
89118911
89128912 if ( tab . TabType == MyCommon . TabUsageType . DirectMessage || ! this . ExistCurrentPost || post == null || post . IsDm )
You can’t perform that action at this time.
0 commit comments