-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature(TestApp): Remove Field.METADATA from "casual" queries #59
Conversation
Splitting up fetching the FIELD_TYPE and fetching the actual query from the user into two separate ones. Unfortunately this did not fix the crash when logging vehicle because the json contained to many lineBreaks ("\n"). Closes: eclipse-kuksa#24 Signed-off-by: Andre Weber <andre.weber3@etas.com>
Fixing the crash when logging "Vehicle". Instead of outputting one big log chunk outputting multiple smaller ones. Signed-off-by: Andre Weber <andre.weber3@etas.com>
Maybe we can fix it in this ticket also: |
app/src/main/kotlin/org/eclipse/kuksa/testapp/databroker/viewmodel/OutputViewModel.kt
Outdated
Show resolved
Hide resolved
app/src/main/kotlin/org/eclipse/kuksa/testapp/databroker/viewmodel/OutputViewModel.kt
Outdated
Show resolved
Hide resolved
app/src/main/kotlin/org/eclipse/kuksa/testapp/KuksaDataBrokerActivity.kt
Outdated
Show resolved
Hide resolved
Will take a look at it and check if it's an easy fix or not :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Additional fix:
The type field now shows correctly "VALUE NOT SET" when ambiguous meta data are received.
Splitting up fetching the FIELD_TYPE and fetching the actual
query from the user into two separate ones.
Unfortunately this did not fix the crash when logging vehicle
because the json contained to many lineBreaks ("\n").
Closes: #24