-
Notifications
You must be signed in to change notification settings - Fork 9
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
Potential Logic Issue in GetLocksOlderThan Methods Data Retrieval. #264
Labels
Comments
That looks like 27.0.x code but I am seeing this issue on 29.0.x as well. |
max-nextcloud
added a commit
that referenced
this issue
Jan 20, 2025
Fixes #264. Signed-off-by: Max <max@nextcloud.com>
max-nextcloud
added a commit
that referenced
this issue
Feb 5, 2025
Fixes #264. Signed-off-by: Max <max@nextcloud.com>
max-nextcloud
added a commit
that referenced
this issue
Feb 13, 2025
Fixes #264. Signed-off-by: Max <max@nextcloud.com>
backportbot bot
pushed a commit
that referenced
this issue
Feb 13, 2025
Fixes #264. Signed-off-by: Max <max@nextcloud.com>
backportbot bot
pushed a commit
that referenced
this issue
Feb 13, 2025
Fixes #264. Signed-off-by: Max <max@nextcloud.com>
backportbot bot
pushed a commit
that referenced
this issue
Feb 13, 2025
Fixes #264. Signed-off-by: Max <max@nextcloud.com>
backportbot bot
pushed a commit
that referenced
this issue
Feb 13, 2025
Fixes #264. Signed-off-by: Max <max@nextcloud.com>
juliusknorr
pushed a commit
that referenced
this issue
Feb 13, 2025
Fixes #264. Signed-off-by: Max <max@nextcloud.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The GetLocksOlderThan (int $timeout) method cannot retrieve data. The 149 lines of this method are the conditions for data query, which cannot retrieve data. Because "$timeout" is the set time (in minutes), and the creation field in the files_lock data table is a unix timestamp, a 10 digit integer number$ Timeout * 60 is impossible to exceed the value of the creation field, which means that data cannot be retrieved. Is there a problem with this logic.
The text was updated successfully, but these errors were encountered: