-
Notifications
You must be signed in to change notification settings - Fork 20
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
Little issue show meetings #38
Comments
It should recursively call that function with a higher offset until all tickets are loaded (lower limit just means more calls, the result should be the same): Could you check what "data.total_count" is? Insert alert(data.total_count); above line 66. |
Could it be that the other 2 are from yesterday? It only loads meetings from today and the future. |
Forget that limit pls, it's not your problem. :-) Just leave it at 100. Just put this: |
Just saw that the number is actually on the screenshot. It says it found 99 issues in total (without a limit) and these issues got loaded. Are you sure there are more than 100? This looks like it's doing what it should do. |
If you really want to try if a higher limit changes anything you need to change it here and in redmine too: Change the line from |
Thanks sir, is the correct solution !!! I change limit to 500, it´s works ... thank you very much. Greetings. |
Could you try again with limit 100 and this commit? It should really work with 100 too! |
I have a problem, on project there are 102 meetings but on calendar only shows 100 meetings, where i can change code for limit???, thanks
I change on this line 49 (meetingcalendar.js)
data : 'key=' + api_key + '&project_id=' + project_id + meeting_room_query + '&start_date=' + encodeURIComponent('>=') + today + '&status_id=' + encodeURIComponent('*') + '&limit=' + 100 + '&offset=' + offset,
I changed value 100 for 500 but nothing happen
The text was updated successfully, but these errors were encountered: