Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
FirentisTFW committed Nov 20, 2024
1 parent 20c5270 commit a5e8aa2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ - (instancetype)initWithMessenger:(NSObject<FlutterBinaryMessenger> *)messenger
- (NSObject<FlutterPlatformView> *)createWithFrame:(CGRect)frame
viewIdentifier:(int64_t)viewId
arguments:(id _Nullable)args {
NSNumber *viewIdFromArgs = args[@"playerId"];
FVPVideoPlayer *player = _playersByTextureId[viewIdFromArgs];
NSNumber *playerId = args[@"playerId"];
FVPVideoPlayer *player = _playersByTextureId[playerId];
return [[FVPNativeVideoView alloc] initWithFrame:frame
viewIdentifier:viewId
arguments:args
Expand Down

0 comments on commit a5e8aa2

Please sign in to comment.