Skip to content

Commit

Permalink
Fixed how items are added
Browse files Browse the repository at this point in the history
Signed-off-by: NicoleYarroch <[email protected]>
  • Loading branch information
NicoleYarroch committed Jun 3, 2021
1 parent 60061c6 commit af8e69a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SmartDeviceLink/private/SDLPreloadChoicesOperation.m
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ - (void)sdl_preloadCells {
if (error != nil) {
errors[request] = error;
SDLCreateInteractionChoiceSet *sentRequest = (SDLCreateInteractionChoiceSet *)request;
[self.failedChoiceUploadIDs insertObject:sentRequest.choiceSet.firstObject.choiceID atIndex:0];
[self.failedChoiceUploadIDs addObject:sentRequest.choiceSet.firstObject.choiceID];
}
} completionHandler:^(BOOL success) {
if (!success) {
Expand Down

0 comments on commit af8e69a

Please sign in to comment.