Skip to content

Commit

Permalink
Make new utility methods public
Browse files Browse the repository at this point in the history
I forgot to change this when copying from another project :P
  • Loading branch information
TrevTV committed Jun 28, 2024
1 parent 515079a commit b9aaae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DeezNET/DeezerURL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public async Task<long[]> GetAssociatedTracks(DeezerClient client, int topLimit
/// <param name="client">The DeezerClient to use when contacting the API. No ARL is necessary.</param>
/// <param name="resolution">The resolution to use in the returned cover URL.</param>
/// <returns>A possibly null URL to the entity's cover.</returns>
private async Task<string?> GetCoverUrl(DeezerClient client, int resolution, CancellationToken token = default)
public async Task<string?> GetCoverUrl(DeezerClient client, int resolution, CancellationToken token = default)
{
long id = Id;
switch (EntityType)
Expand Down Expand Up @@ -196,7 +196,7 @@ public async Task<long[]> GetAssociatedTracks(DeezerClient client, int topLimit
/// </summary>
/// <param name="client">The DeezerClient to use when contacting the API. No ARL is necessary.</param>
/// <returns>A possibly null string with the title of the entity.</returns>
private async Task<string?> GetTitle(DeezerClient client, CancellationToken token = default)
public async Task<string?> GetTitle(DeezerClient client, CancellationToken token = default)
{
long id = Id;
switch (EntityType)
Expand Down

0 comments on commit b9aaae4

Please sign in to comment.