Skip to content

Commit

Permalink
Merge pull request #9 from profilelag/patch-1
Browse files Browse the repository at this point in the history
Update Utility.cs (Fix Issue #8)
  • Loading branch information
blepmlem authored Jan 27, 2025
2 parents 30af8a1 + a894c25 commit 610eb6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Editor/Utility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public static async Task<IEnumerable<ApiAvatar>> GetAvatars()
}

_avatarTSC = new TaskCompletionSource<IEnumerable<ApiAvatar>>();
void OnSuccess(IEnumerable<ApiAvatar> avs)
void OnSuccess(IEnumerable<ApiAvatar> avs, bool success)
{
_avatarTSC.TrySetResult(avs);
}
Expand Down Expand Up @@ -367,4 +367,4 @@ public static void AddObjectsToAsset(this Object asset, params Object[] objs)
AssetDatabase.SaveAssets();
}
}
}
}

0 comments on commit 610eb6b

Please sign in to comment.