Skip to content

Commit

Permalink
fix(loadingstate): loadingState was missing in source events
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandkakonyi committed Nov 30, 2023
1 parent 7fda4b6 commit 7ab087b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- iOS: `onEvent` on iOS has incomplete payload information
- tvOS: Picture in Picture sample screen has unwanted padding
- iOS: hide home indicator when entering fullscreen mode in the example application
- iOS: invalid `loadingState` value in `SeekEvent`, `SourceLoadEvent`, `SourceLoadedEvent` and in `SourceUnloadedEvent`

## [0.14.1] (2023-11-16)

Expand Down
2 changes: 1 addition & 1 deletion ios/Event+JSON.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ extension Source {
var json: [AnyHashable: Any] = [
"duration": duration,
"isActive": isActive,
"loadingState": loadingState,
"loadingState": loadingState.rawValue,
"isAttachedToPlayer": isAttachedToPlayer
]
if let metadata {
Expand Down

0 comments on commit 7ab087b

Please sign in to comment.