-
Notifications
You must be signed in to change notification settings - Fork 95
BugFix - Use Long For X-Activity-Last-Given #1672
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
BugFix - Use Long For X-Activity-Last-Given #1672
Conversation
joshtrichards
left a comment
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.
Makes sense since PHP int size can be up to 2^63.
Likely will need to be changed elsewhere too - i.e.
- https://github.com/nextcloud/android/blob/87a2bc7e70801ad8260b9d8cc10ceb109c41a9da/app/src/main/java/com/owncloud/android/ui/activities/data/activities/ActivitiesServiceApiImpl.java#L58
- https://github.com/nextcloud/android/blob/87a2bc7e70801ad8260b9d8cc10ceb109c41a9da/app/src/main/java/com/owncloud/android/ui/fragment/FileDetailActivitiesFragment.java#L260
86363c1 to
ee1fb0c
Compare
ee1fb0c to
f5b31bd
Compare
tobiasKaminsky
left a comment
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.
Please fix failing test :)
090e421 to
fbc956d
Compare
|
master-IT test failed: https://www.kaminsky.me/nc-dev/android-library-integrationTests/3994-IT-master-14-04/debug/ |
|
stable-IT test failed: https://www.kaminsky.me/nc-dev/android-library-integrationTests/3994-IT-stable-14-08/debug/ |
Signed-off-by: alperozturk <alper_ozturk@proton.me>
fbc956d to
fb48d01
Compare
|
stable-IT test failed: https://www.kaminsky.me/nc-dev/android-library-integrationTests/4005-IT-stable-14-25/debug/ |
|
master-IT test failed: https://www.kaminsky.me/nc-dev/android-library-integrationTests/4005-IT-master-14-30/debug/ |
Issue : X-Activity-Last-Given, exceeding the integer limit.
Client PR: nextcloud/android#14727