Genre getting assigned as URI, from string property. #45
Unanswered
kirk-marple
asked this question in
Q&A
Replies: 4 comments
|
This is fixed in the latest version. Thanks for reporting. Will release soon. |
0 replies
|
Happy to test this out as soon as you have a moment to release it, thanks! |
0 replies
|
Any chance of a release soon? Would really like to try out your recent changes! |
0 replies
|
Need to write some more tests and get a higher level of confidence. Also trying to fix #29 |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
new MusicRecording { Genre = "indie" })
Where 'track' is MusicRecording, I'm finding that the genre is getting assigned as a System.Uri, not a string. So this expression actually is null below.
track.Genre.Value.Value1.FirstOrDefault()
I'm guessing, since a Uri can be constructed from a string, it's mapping to that? But 'indie' isn't a valid URI, and I can't figure out how to force it as a string.
All reactions