Skip to content

Commit

Permalink
Changed type of ReleaseDate (DateTime --> String). JSON.NET wasn't ab…
Browse files Browse the repository at this point in the history
…le to parse some timestamps
  • Loading branch information
Johnny @PC committed Feb 21, 2015
1 parent bf0db02 commit b019e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SpotifyAPI/SpotifyWebAPI/Models/FullAlbum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class FullAlbum : BasicModel
[JsonProperty("popularity")]
public int Popularity { get; set; }
[JsonProperty("release_date")]
public DateTime ReleaseDate { get; set; }
public String ReleaseDate { get; set; }
[JsonProperty("release_date_precision")]
public String ReleaseDatePrecision { get; set; }
[JsonProperty("tracks")]
Expand Down

0 comments on commit b019e3d

Please sign in to comment.