You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For a period of time, projects could end up with a slightly invalid slug, with double dashes. This could happen if the project name included a utf8 character that would not slugify or even a dash/underscore. New projects seem to slug properly now, but for any project that was created in the period where these slugs were possible, PR builds will not work due to pattern matching bugs.
The logic here simply breaks up the first --, which for a project slug like slug--bug--1.org.readthedocs.build, would not parse correctly. Bug is here:
For a period of time, projects could end up with a slightly invalid slug, with double dashes. This could happen if the project name included a utf8 character that would not slugify or even a dash/underscore. New projects seem to slug properly now, but for any project that was created in the period where these slugs were possible, PR builds will not work due to pattern matching bugs.
The logic here simply breaks up the first
--
, which for a project slug likeslug--bug--1.org.readthedocs.build
, would not parse correctly. Bug is here:readthedocs.org/readthedocs/proxito/middleware.py
Line 82 in bc3e147
The text was updated successfully, but these errors were encountered: