diff -r 0a3ad94fc71c -r 74b7c6e79031 radioapp/radiouiengine/src/radiostation.cpp --- a/radioapp/radiouiengine/src/radiostation.cpp Mon Aug 23 14:17:50 2010 +0300 +++ b/radioapp/radiouiengine/src/radiostation.cpp Fri Sep 03 12:25:04 2010 +0300 @@ -182,7 +182,7 @@ { // Name emptiness is checked because this name setter is used by incoming RDS PS name // and empty names should be ignored - if ( !name.isEmpty() && !mData->isRenamedByUser() && mData->mName.compare( name ) != 0 ) { + if ( !name.isEmpty() && !mData->isRenamedByUser() && mData->mName.compare( name.trimmed() ) != 0 ) { mData->mName = name.trimmed(); mData->mChangeFlags |= RadioStation::PersistentDataChanged | RadioStation::NameChanged; mData->setStationHasSentRds( true );