Skip to content

Commit

Permalink
hide notifications-mute on Enterprise builds
Browse files Browse the repository at this point in the history
  • Loading branch information
c99koder committed Mar 28, 2019
1 parent f25f46e commit e78f53c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/com/irccloud/android/fragment/BufferOptionsFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import android.widget.Toast;

import com.crashlytics.android.Crashlytics;
import com.irccloud.android.BuildConfig;
import com.irccloud.android.IRCCloudApplication;
import com.irccloud.android.NetworkConnection;
import com.irccloud.android.R;
Expand Down Expand Up @@ -368,6 +369,9 @@ public void onClick(DialogInterface dialog, int which) {
}
}

if(BuildConfig.ENTERPRISE)
muted.setVisibility(View.GONE);

return new AlertDialog.Builder(ctx)
.setTitle("Display Options")
.setView(v)
Expand Down

0 comments on commit e78f53c

Please sign in to comment.