mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-04 16:53:15 +02:00
f9c46f9f10
In the config file if you have a value that is 100% an URL (eg no spaces and all that) then it is seen as a remote include and will be fetched. Eg: file "https://something/" We already had that. Now we add a new option to make it NOT interpret this as an URL. Probably only used in rare cases, but, it is needed for modules like extjwt where you configure an URL. The solution is simple: use single quotes instead of double: Eg: url 'https://something/' Note that single quotes are only supported in this version onwards, they were not supported in earlier UnrealIRCd versions. It is also only supported in values at the moment (not names), since that is the only place where URLs are actually fetched for.