mark Pixel and Pixel XL releases as legacy

This commit is contained in:
Daniel Micay 2019-04-29 13:50:21 -04:00
parent ed6e360fcc
commit 40b80f0d7a

View File

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