Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
avoid exception if path is null
Dieser Commit ist enthalten in:
Ursprung
7303a9314d
Commit
3cdaa82ac5
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
|
@ -25,7 +25,7 @@ export default {
|
||||||
|
|
||||||
const existing = DiscourseURL.routeTo;
|
const existing = DiscourseURL.routeTo;
|
||||||
DiscourseURL.routeTo = function(path, opts) {
|
DiscourseURL.routeTo = function(path, opts) {
|
||||||
if (path.indexOf('/w/') > -1) {
|
if (path && path.indexOf('/w/') > -1) {
|
||||||
return window.location = path;
|
return window.location = path;
|
||||||
}
|
}
|
||||||
return existing.apply(this, [path, opts]);
|
return existing.apply(this, [path, opts]);
|
||||||
|
|
Laden …
In neuem Issue referenzieren