Skip to content

Commit

Permalink
Add a few missing biglbt refs
Browse files Browse the repository at this point in the history
  • Loading branch information
parg committed Sep 12, 2017
1 parent 75fd012 commit 8086ff8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@

handled = true;

}else if ( lc_info.contains( "azureus" ) || lc_info.contains( "vuze" )){
}else if ( lc_info.contains( "azureus" ) || lc_info.contains( "vuze" ) || lc_info.contains( "biglybt" )){

explicit_renderer = handleVuzeMSBrowser( client_address, client_info );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public void setAddress(InetAddress address) {
UPnPDevice upnpDevice = deviceUPnP.getUPnPDevice();
if (upnpDevice != null) {
String manufacturer = upnpDevice.getManufacturer();
if (manufacturer == null || !manufacturer.startsWith("Vuze")) {
if (manufacturer == null || !( manufacturer.startsWith("Vuze") || manufacturer.startsWith("BiglyBT"))){
log("Linked " + getName() + " to UPnP Device " + device.getName());
setUPnPDevice(upnpDevice);
setDirty();
Expand Down
2 changes: 1 addition & 1 deletion core/src/com/biglybt/update/CoreUpdateChecker.java
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@

String app_name = SystemProperties.getApplicationName();

if ( !( app_name.equals( "Vuze" ) || app_name.equals( "Azureus" ))){
if ( !( app_name.equals( "Vuze" ) || app_name.equals( "Azureus" ) || app_name.equals( "BiglyBT" ))){

UIManager ui_manager = StaticUtilities.getUIManager( 120*1000 );

Expand Down

0 comments on commit 8086ff8

Please sign in to comment.