-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Updated extractor to latest revision and fix compile errors #8531
Updated extractor to latest revision and fix compile errors #8531
Conversation
506d8cc
to
b4f3db6
Compare
.findFirst() | ||
.map(StreamingService::getServiceInfo) | ||
.map(StreamingService.ServiceInfo::getName) | ||
.orElse("<unknown>"); |
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.
String resource?
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.
Wouldn't recommend:
- This should never happen in the first place (however it's possible because we use
int
s instead of valid objects) - We are inside a static method we would need some kind of context here (and in all subsequent calls)
- I don't think we have to translate this
- It was a hardcoded string before
b4f3db6
to
04e8e03
Compare
Kudos, SonarCloud Quality Gate passed! |
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
What is it?
Description of the changes in your PR
APK testing
The APK can be found by going to the "Checks" tab below the title. On the left pane, click on "CI", scroll down to "artifacts" and click "app" to download the zip file which contains the debug APK of this PR.
Relies on the following changes
Due diligence