File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
sentry-android-replay/src/main/java/io/sentry/android/replay/video Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -161,15 +161,15 @@ internal class SimpleVideoEncoder(
161161 * ---
162162 * Same for Motorola devices.
163163 * ---
164- * As for the T606, it's a Spreadtrum/Unisoc chipset and can be spread across various
165- * devices, so we have to check the SOC_MODEL property, as the manufacturer name might have
166- * changed.
164+ * As for the Spreadtrum/Unisoc chipset, it can be spread across various devices, so we have
165+ * to check the SOC_MANUFACTURER property, as the manufacturer name might have changed.
167166 * https://github.com/getsentry/sentry-android-gradle-plugin/issues/861#issuecomment-2867021256
168167 */
169168 val canvas = if (
170169 Build .MANUFACTURER .contains(" xiaomi" , ignoreCase = true ) ||
171170 Build .MANUFACTURER .contains(" motorola" , ignoreCase = true ) ||
172- SystemProperties .get(SystemProperties .Property .SOC_MODEL ).equals(" T606" , ignoreCase = true )
171+ SystemProperties .get(SystemProperties .Property .SOC_MANUFACTURER ).equals(" spreadtrum" , ignoreCase = true ) ||
172+ SystemProperties .get(SystemProperties .Property .SOC_MANUFACTURER ).equals(" unisoc" , ignoreCase = true )
173173 ) {
174174 surface?.lockCanvas(null )
175175 } else {
You can’t perform that action at this time.
0 commit comments