Skip to content

Commit 114039a

Browse files
committed
Fix potential null
1 parent 64f4e2f commit 114039a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BTProgressHUD/ProgressHUD.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ private void PositionHUD(NSNotification? notification)
896896
0, UIViewAnimationOptions.AllowUserInteraction, delegate
897897
{
898898
MoveToPoint(newCenter, rotateAngle);
899-
}, null);
899+
}, () => { });
900900
}
901901
else
902902
{

0 commit comments

Comments
 (0)