mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-27 16:09:20 +00:00
Fix video preferences issue
This commit is contained in:
parent
b24e3aba5f
commit
d0501c8328
1 changed files with 3 additions and 1 deletions
|
|
@ -150,8 +150,10 @@ public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
|
|||
byte[] re = new byte[1024];
|
||||
while(in.read(re) != -1){
|
||||
String line = new String(re);
|
||||
if (line.startsWith("Features"))
|
||||
if (line.startsWith("Features")) {
|
||||
result = line.contains("neon");
|
||||
break;
|
||||
}
|
||||
}
|
||||
in.close();
|
||||
} catch(IOException ex){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue