OneSignal / OneSignal-iOS-SDK

OneSignal is a free push notification service for mobile apps. This plugin makes it easy to integrate your native iOS app with OneSignal. https://onesignal.com
Other
496 stars 263 forks source link

Fix crash in OneSignalAttachmentHandler trimURLSpacing #1411

Closed nan-li closed 6 months ago

nan-li commented 7 months ago

Description

One Line Summary

Fix crash in OneSignalAttachmentHandler trimURLSpacing by checking for NSNull in addition to nil checking that is already existent.

Details

The attachment handler can have values in a dictionary be NSNull since is used to represent nil objects in collections, and we typically see NSNull when we convert JSON to Objective-C objects and the JSON contained null values.

Motivation

Scope

Checking for nullness

Testing

Unit testing

Added one unit test

Manual testing

Reproduced the crash by passing in NSNull manually. Tested on iPhone 13 ios 17.4 by attaching an image and seeing method triggered.

Affected code checklist

Checklist

Overview

Testing

Final pass


This change is Reviewable