Merge pull request #1361 from MilosKozak/g6-xdrip-filtered

Also count "G6 Native" in xDrip as filtered
This commit is contained in:
Milos Kozak 2018-08-25 19:27:56 +02:00 committed by GitHub
commit 72f7b244c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,6 +70,6 @@ public class SourceXdripPlugin extends PluginBase implements BgSourceInterface {
}
public void setSource(String source) {
this.advancedFiltering = source.contains("G5 Native");
this.advancedFiltering = source.contains("G5 Native")||source.contains("G6 Native");
}
}