-
-
Notifications
You must be signed in to change notification settings - Fork 191
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
Unable to set recurrence rule for Nth of every month #160
Comments
Found temporary fix by simply running |
Okay, so... I'm entering from a point of direct face-to-wall here, but the only way for |
Seeing something similar.
Trying to set a recurrence for the 1st and 15th of the month through the Django Admin. The POST request inspected using DevTools (data isn't being passed correctly): The result I can modify it using a Django Rest Framework API endpoint by setting the payload as: 'recurrences': 'RRULE:FREQ=MONTHLY;BYMONTHDAY=1,15\nRDATE:20200315T050000Z' which makes it look like it is a javascript issue, but I'm not able to debug that. |
My weak attempt to debug some javascript :) In my example, it makes it to this line: but doesn't get to assign it to |
Traced the bug to where @SteveHere originally identified it in: https://github.com/django-recurrence/django-recurrence/blob/master/recurrence/static/recurrence/js/recurrence.js#L448 French language logic was added by @ollb in PR #32 Release was 1.2.0 |
This was fixed in 7190d6c |
Proof (Unable to set a new rule for the Nth of every month):

However, I can set the 'On the first X' with no problems:

JS error message:

Running breakpoints show that some attribute from recurrence called 'langauge_code' was supposed to be called over, but it doesn't exist:

The text was updated successfully, but these errors were encountered: