CC-3863: Stats should not send version number with extra characters
-fixed
This commit is contained in:
parent
b28a700005
commit
eb4207dd1d
|
@ -414,8 +414,8 @@ class Application_Model_Preference
|
||||||
$key == 'PLAYOUT_ENGINE_CPU_PERC' ) {
|
$key == 'PLAYOUT_ENGINE_CPU_PERC' ) {
|
||||||
if($key == 'AIRTIME_VERSION'){
|
if($key == 'AIRTIME_VERSION'){
|
||||||
// remove hash tag on the version string
|
// remove hash tag on the version string
|
||||||
list($version, $dump) = explode('+', $info[1]);
|
$version = explode('+', $info[1]);
|
||||||
$systemInfoArray[$key] = $version;
|
$systemInfoArray[$key] = $version[0];
|
||||||
}else{
|
}else{
|
||||||
$systemInfoArray[$key] = $info[1];
|
$systemInfoArray[$key] = $info[1];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue