Add client name to possible device info lines

This commit is contained in:
Rasmus Krämer 2024-04-01 16:20:09 +02:00
parent c7cc994532
commit c8957fe373
No known key found for this signature in database
GPG Key ID: B0AAA8ECA7290AF8

View File

@ -396,6 +396,7 @@ export default {
var lines = []
if (deviceInfo.osName) lines.push(`${deviceInfo.osName} ${deviceInfo.osVersion}`)
if (deviceInfo.browserName) lines.push(deviceInfo.browserName)
if (deviceInfo.clientName) lines.push(`${deviceInfo.clientName} ${deviceInfo.clientVersion}`)
if (deviceInfo.manufacturer && deviceInfo.model) lines.push(`${deviceInfo.manufacturer} ${deviceInfo.model}`)
if (deviceInfo.sdkVersion) lines.push(`SDK Version: ${deviceInfo.sdkVersion}`)