diff --git a/Facepunch.Steamworks.Test/UgcQuery.cs b/Facepunch.Steamworks.Test/UgcQuery.cs index ae3cb5b..8147535 100644 --- a/Facepunch.Steamworks.Test/UgcQuery.cs +++ b/Facepunch.Steamworks.Test/UgcQuery.cs @@ -105,7 +105,7 @@ namespace Steamworks [TestMethod] public async Task QuerySpecificFile() { - var item = await SteamUGC.FetchItem( 1734427277 ); + var item = await SteamUGC.QueryFileAsync( 1734427277 ); Assert.IsTrue( item.HasValue ); Assert.IsNotNull( item.Value.Title ); diff --git a/Facepunch.Steamworks/SteamUgc.cs b/Facepunch.Steamworks/SteamUgc.cs index 17f24c2..f68d31a 100644 --- a/Facepunch.Steamworks/SteamUgc.cs +++ b/Facepunch.Steamworks/SteamUgc.cs @@ -49,7 +49,7 @@ namespace Steamworks /// Utility function to fetch a single item. Internally this uses Ugc.FileQuery - /// which you can use to query multiple items if you need to. /// - public static async Task FetchItem( PublishedFileId fileId ) + public static async Task QueryFileAsync( PublishedFileId fileId ) { var result = await new Ugc.FileQuery( fileId ) .GetPageAsync( 1 );