Fixed jquery json language extraction and updated to the latest Twine #5

Merged
biodranik merged 14 commits from fixes into organicmaps 2022-12-22 11:59:49 +00:00
Showing only changes of commit 1a140cbdf8 - Show all commits

View file

@ -14,7 +14,7 @@ module Twine
end
def determine_language_given_path(path)
match = /^.+-([^-]{2})\.json$/.match File.basename(path)
match = /^.+([a-z]{2}-[A-Z]{2})\.json$/.match File.basename(path)
return match[1] if match
return super