Skip to content

Commit

Permalink
Merge pull request #101 from Gml-Launcher/develop
Browse files Browse the repository at this point in the history
Fix texture provider
  • Loading branch information
GamerVII-NET authored Jan 26, 2025
2 parents ad31e86 + 6b0fb5f commit 2f5cd38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gml.Web.Api/Core/Handlers/AuthIntegrationHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ public static async Task<IResult> AuthWithToken(
}

if (string.IsNullOrEmpty(player.TextureSkinUrl))
player.TextureSkinUrl ??= (await gmlManager.Integrations.GetSkinServiceAsync())
player.TextureSkinUrl = (await gmlManager.Integrations.GetSkinServiceAsync())
.Replace("{userName}", player.Name)
.Replace("{userUuid}", player.Uuid);

Expand Down

0 comments on commit 2f5cd38

Please sign in to comment.