1 diff -ruN a/support/mixer-qt4/ffado/configuration.py b/support/mixer-qt4/ffado/configuration.py
2 --- a/support/mixer-qt4/ffado/configuration.py 2017-03-28 13:38:34.000000000 +0200
3 +++ b/support/mixer-qt4/ffado/configuration.py 2019-11-24 20:55:05.284341627 +0100
5 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 def getDeviceById( self, vendor, model ):
18 + if isinstance(vendor, dbus.Int32):
19 + vendor = str(int(vendor))
20 + if isinstance(model, dbus.Int32):
21 + model = str(int(model))
22 log.debug("DeviceList::getDeviceById( %s, %s )" % (vendor, model ))
23 for dev in self.devices:
24 if int("%s" % dev['vendorid'], 0) == int("%s" % vendor, 0) and \