Skip to content

Commit

Permalink
fix(ios): fix typo on Ti.Media.MUSIC_PLAYER_STATE_SEEK_FORWARD
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Nov 2, 2020
1 parent 47727bf commit de780ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iphone/Classes/MediaModule.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
@property (nonatomic, readonly) NSNumber *MUSIC_PLAYER_STATE_PLAYING;
@property (nonatomic, readonly) NSNumber *MUSIC_PLAYER_STATE_PAUSED;
@property (nonatomic, readonly) NSNumber *MUSIC_PLAYER_STATE_INTERRUPTED;
@property (nonatomic, readonly) NSNumber *MUSIC_PLAYER_STATE_SKEEK_FORWARD;
@property (nonatomic, readonly) NSNumber *MUSIC_PLAYER_STATE_SEEK_FORWARD;
@property (nonatomic, readonly) NSNumber *MUSIC_PLAYER_STATE_SEEK_BACKWARD;

@property (nonatomic, readonly) NSNumber *MUSIC_PLAYER_REPEAT_DEFAULT;
Expand Down
2 changes: 1 addition & 1 deletion iphone/Classes/MediaModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ - (NSNumber *)MUSIC_MEDIA_TYPE_ALL
MAKE_SYSTEM_PROP(MUSIC_PLAYER_STATE_PLAYING, MPMusicPlaybackStatePlaying);
MAKE_SYSTEM_PROP(MUSIC_PLAYER_STATE_PAUSED, MPMusicPlaybackStatePaused);
MAKE_SYSTEM_PROP(MUSIC_PLAYER_STATE_INTERRUPTED, MPMusicPlaybackStateInterrupted);
MAKE_SYSTEM_PROP(MUSIC_PLAYER_STATE_SKEEK_FORWARD, MPMusicPlaybackStateSeekingForward);
MAKE_SYSTEM_PROP(MUSIC_PLAYER_STATE_SEEK_FORWARD, MPMusicPlaybackStateSeekingForward);
MAKE_SYSTEM_PROP(MUSIC_PLAYER_STATE_SEEK_BACKWARD, MPMusicPlaybackStateSeekingBackward);

//Constants for MusicPlayer repeatMode
Expand Down

0 comments on commit de780ec

Please sign in to comment.