[Slim-Checkins] r33931 - /7.8/trunk/server/Slim/Menu/SystemInfo.pm
[email protected] Tue, 10 Apr 2012 14:26:04 -0000
| Newsgroups | gmane.music.equipment.slimdevices.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: mherger
Date: Tue Apr 10 07:26:04 2012
New Revision: 33931
URL: http://svn.slimdevices.com/slim?rev=33931&view=rev
Log:
Bug: n/a
Description: don't show account information in mysb's information screen if account owner is unknown
Modified:
7.8/trunk/server/Slim/Menu/SystemInfo.pm
Modified: 7.8/trunk/server/Slim/Menu/SystemInfo.pm
URL: http://svn.slimdevices.com/slim/7.8/trunk/server/Slim/Menu/SystemInfo.pm?rev=33931&r1=33930&r2=33931&view=diff
==============================================================================
--- 7.8/trunk/server/Slim/Menu/SystemInfo.pm (original)
+++ 7.8/trunk/server/Slim/Menu/SystemInfo.pm Tue Apr 10 07:26:04 2012
@@ -548,8 +548,14 @@
{
type => 'text',
- name => cstring($client, 'INFORMATION_SN_ACCOUNT') . cstring($client, 'COLON') . ' ' . $client->playerData->userid->email,
- },
+ # don't show the anonymous account information
+ name => cstring($client, 'INFORMATION_SN_ACCOUNT') . cstring($client, 'COLON') . ' ' .
+ ( $client->playerData->userid->email =~ /^!anonymous_[\da-f]+$/i
+ ? cstring($client, 'UNK')
+ : $client->playerData->userid->email
+ ),
+ }
+
]
};