2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-08-20 18:52:44 +08:00

FIX: permalink normalization not applied at constraint

implement permalink import for lithium
This commit is contained in:
Sam 2015-07-22 13:40:45 +10:00
parent 90b85e5b23
commit 3a54923116
4 changed files with 41 additions and 22 deletions

View file

@ -1,7 +1,7 @@
class PermalinkConstraint
def matches?(request)
Permalink.where(url: request.fullpath[1..-1]).exists?
Permalink.where(url: Permalink.normalize_url(request.fullpath)).exists?
end
end