Skip to content

Commit

Permalink
Add client name to possible device info lines
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmuslos committed Apr 1, 2024
1 parent c7cc994 commit c8957fe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/pages/config/sessions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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}`)
Expand Down

0 comments on commit c8957fe

Please sign in to comment.