This commit is contained in:
Phil Ringnalda 2013-10-03 20:56:15 -07:00
Родитель 08f65cf2a9 3e68997029
Коммит b757a4e18f
3 изменённых файлов: 4 добавлений и 10 удалений

Просмотреть файл

@ -1,4 +1,4 @@
{
"revision": "ebb5c473c94911bb98acff5d46f6af209c12583e",
"revision": "06ea7706d72174637b5f956122f52200d3f81fda",
"repo_path": "/integration/gaia-central"
}

Просмотреть файл

@ -1653,14 +1653,8 @@ BluetoothHfpManager::ConnectSco(BluetoothReplyRunnable* aRunnable)
bool
BluetoothHfpManager::DisconnectSco()
{
if (!IsConnected()) {
BT_WARNING("BluetoothHfpManager is not connected");
return false;
}
SocketConnectionStatus status = mScoSocket->GetConnectionStatus();
if (status != SOCKET_CONNECTED && status != SOCKET_CONNECTING) {
BT_WARNING("No SCO exists");
if (!IsScoConnected()) {
BT_WARNING("SCO has been already disconnected.");
return false;
}

Просмотреть файл

@ -2348,7 +2348,7 @@ function WifiWorker() {
self.networksArray = [];
for (let i = 1; i < lines.length; ++i) {
// bssid / frequency / signal level / flags / ssid
var match = /([\S]+)\s+([\S]+)\s+([\S]+)\s+(\[[\S]+\])?\s+(.*)/.exec(lines[i]);
var match = /([\S]+)\s+([\S]+)\s+([\S]+)\s+(\[[\S]+\])?\s(.*)/.exec(lines[i]);
if (match && match[5]) {
let ssid = match[5],