Andre Barrett

Results 3 comments of Andre Barrett

Ok, I found the issue. This function is where it goes wrong: ``` func getClaimFrom(claim string, src *simplejson.Json) interface{} { claimParts := strings.Split(claim, ".") return src.GetPath(claimParts...).Interface() } ``` In my...

@Kiranmyway Did you manage to get this working? I'm looking at the same thing and wondering where I'm going wrong trying to playback an MP4 file encrypted with CENC

I came across this issue myself today. I used this as a workaround: ``` ... val mockSubMessage = mockk() val slot = slot Unit>() every { mockConsumer.handler(capture(slot)) } returns Unit...