xDrip plugin depend filtering on source
This commit is contained in:
parent
6942a3d4b8
commit
938040ae6b
|
@ -13,6 +13,8 @@ public class SourceXdripPlugin extends PluginBase implements BgSourceInterface {
|
|||
|
||||
private static SourceXdripPlugin plugin = null;
|
||||
|
||||
boolean advancedFiltering;
|
||||
|
||||
public static SourceXdripPlugin getPlugin() {
|
||||
if (plugin == null)
|
||||
plugin = new SourceXdripPlugin();
|
||||
|
@ -29,6 +31,10 @@ public class SourceXdripPlugin extends PluginBase implements BgSourceInterface {
|
|||
|
||||
@Override
|
||||
public boolean advancedFilteringSupported() {
|
||||
return false;
|
||||
return advancedFiltering;
|
||||
}
|
||||
|
||||
public void setSource(String source) {
|
||||
this.advancedFiltering = "G5 Native".equals(source);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue