Browse Source

Minor edit

tags/docs-0.9
RogueException 9 years ago
parent
commit
f38ed87343
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/Models/Profile.cs

+ 1
- 1
src/Discord.Net/Models/Profile.cs View File

@@ -17,7 +17,7 @@ namespace Discord
/// <summary> Gets the unique identifier for this user's current avatar. </summary> /// <summary> Gets the unique identifier for this user's current avatar. </summary>
public string AvatarId => Client.PrivateUser.AvatarId; public string AvatarId => Client.PrivateUser.AvatarId;
/// <summary> Gets the URL to this user's current avatar. </summary> /// <summary> Gets the URL to this user's current avatar. </summary>
public string AvatarUrl => User.GetAvatarUrl(Id, AvatarId);
public string AvatarUrl => Client.PrivateUser.AvatarUrl;
/// <summary> Gets an id uniquely identifying from others with the same name. </summary> /// <summary> Gets an id uniquely identifying from others with the same name. </summary>
public ushort Discriminator => Client.PrivateUser.Discriminator; public ushort Discriminator => Client.PrivateUser.Discriminator;
/// <summary> Gets the name of the game this user is currently playing. </summary> /// <summary> Gets the name of the game this user is currently playing. </summary>


Loading…
Cancel
Save