This commit is contained in:
fabjuuuh
2020-10-19 15:13:27 +02:00
parent 84cbcb4a6d
commit 2adfcc5bd7
3 changed files with 45 additions and 10 deletions

View File

@@ -56,7 +56,7 @@ namespace DoctorApp.ViewModels
{
if(item.PatientInfo.Username == username)
{
item.BikeData(bytes);
item.BikeData(DataParser.getDataWithoutName(bytes,0,8));
}
}
}
@@ -68,7 +68,7 @@ namespace DoctorApp.ViewModels
{
if (item.PatientInfo.Username == username)
{
item.BikeData(bytes);
item.BikeData(DataParser.getDataWithoutName(bytes, 0,2));
}
}
}