pmaports/main/ofono-qt/10-use_right_modem_objpath.patch
Bhushan Shah ff29f3a7db aports/main: Introduce ofono-qt aport (#1512)
This is basically too old stuff from meego times, and is added only
because telepathy-ofono needs it for now, I will talk with ubports
people to get telepathy-ofono ported to libqofono so we can dump this 6
year old unmaintained library.

(patches to make it build with qt5 and modern compiler are taken from
ubuntu packaging)
2018-06-01 21:19:43 +02:00

28 lines
1 KiB
Diff

Description: do not fallback to / when using ManualSelect
Author: Tiago Salem Herrmann <tiago.herrmann@canonical.com>
Forwarded: no
diff:
Index: ofono-qt-1.5+git20120419+bcf0c04/lib/ofonomodem.cpp
===================================================================
--- ofono-qt-1.5+git20120419+bcf0c04.orig/lib/ofonomodem.cpp 2012-04-19 12:03:52.000000000 -0300
+++ ofono-qt-1.5+git20120419+bcf0c04/lib/ofonomodem.cpp 2014-03-26 10:24:13.250630065 -0300
@@ -41,8 +41,7 @@
if (setting == AutomaticSelect)
finalModemPath = m_mm->modems().value(0);
else if (setting == ManualSelect)
- if (m_mm->modems().contains(modemPath))
- finalModemPath = modemPath;
+ finalModemPath = modemPath;
if (finalModemPath.isEmpty()) {
finalModemPath = "/";
@@ -122,8 +121,6 @@
}
m_if->setPath(modemPath);
emit pathChanged(modemPath);
- } else if (m_selectionSetting == ManualSelect) {
- m_if->setPath("/");
}
}
// validity has changed