Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions LoopFollow/BackgroundRefresh/BackgroundRefreshType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ enum BackgroundRefreshType: String, Codable, CaseIterable {

case .omnipodDash:
if let name = device.name {
// actual DASH or rPi DASH simulator
return name == "TWI BOARD" || name == " :: Fake POD ::"
// "TWI BOARD": original DASH pod
// "InPlay BLE": newer Atlas DASH pod
// " :: Fake POD ::": rPi DASH simulator
return name == "TWI BOARD" || name == "InPlay BLE" || name == " :: Fake POD ::"
}
return false

Expand Down
Loading