Leave / intact

This commit is contained in:
2026-06-17 17:34:07 +02:00
parent 0208a7549c
commit 12222e9a0f
2 changed files with 6 additions and 5 deletions

View File

@@ -6,7 +6,8 @@ static inline bool byte_is_url_safe(char c) {
|| (c >= '0' && c <= '9')
|| (c >= '(' && c <= '*')
|| c == '!' || c == '-'
|| c == '.' || c == '_';
|| c == '.' || c == '_'
|| c == '/';
}
// Determines if a string needs to be URL encoded.