Skip to content

Commit

Permalink
Update src/Tizen.NUI/src/public/BaseComponents/LottieAnimationView.cs
Browse files Browse the repository at this point in the history
Co-authored-by: SangHyeon Jade Lee <[email protected]>
  • Loading branch information
dongsug-song and everLEEst committed Dec 26, 2024
1 parent 75989f5 commit 2a94d45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1502,7 +1502,7 @@ static internal void RootCallback(int id, int returnType, uint frameNumber, ref

if (weakReferencesOfLottie.TryGetValue(id, out current))
{
if (current.TryGetTarget(out currentView) && (currentView != null) && !currentView.IsDisposedOrQueued && current != null)
if (current != null && current.TryGetTarget(out currentView) && (currentView != null) && !currentView.IsDisposedOrQueued)
{
lock (currentView.InternalPropertyCallbacksLock)
{
Expand Down

0 comments on commit 2a94d45

Please sign in to comment.