make device model names consistent

This commit is contained in:
Daniel Micay
2019-05-07 09:34:30 -04:00
parent c3534cede2
commit c06ff931f0
2 changed files with 3 additions and 3 deletions

View File

@@ -27,10 +27,10 @@ function deviceModel(device) {
return "Pixel 2";
}
if (device === "marlin") {
return "Pixel 1 XL (legacy)";
return "Pixel XL (legacy)";
}
if (device === "sailfish") {
return "Pixel 1 (legacy)";
return "Pixel (legacy)";
}
return device;
}