X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b5ca0a1b4676eea8cf2fd9966634cac73bd46e5b..93e5471ad948cc4504bb128f0b5fbb0a939fbcbf:/lib/python/Components/Sources/RadioText.py diff --git a/lib/python/Components/Sources/RadioText.py b/lib/python/Components/Sources/RadioText.py index 6faad317..de10ad81 100644 --- a/lib/python/Components/Sources/RadioText.py +++ b/lib/python/Components/Sources/RadioText.py @@ -16,8 +16,7 @@ class RadioText(PerServiceBase, Source, object): @cached def getText(self): service = self.navcore.getCurrentService() - info = service and service.radioText() - return info and info.getRadioText() + return service and service.radioText() radiotext = property(getText)