trajekolus

Results 5 comments of trajekolus

@Vandersteen I think it is correct behavior because Code128 automatically switch between the three subsets (A, B, and C) to code the data in the shortest form. And if subset...

Another anomaly I see in the DEBUG output is a space between the port and the path: csrf Login to https://blablaserver.internal:8469 /customer/login Also, if I do console.log(result), one thing I...

It appears to me that the problem is that the login url path is not handled right when it consists of two components: /customer/login The exact same code works fine...

In the source, if I change the following in csrf-login.js, it works: change: ` var loginUrl = csrfInfo.url` to `var loginUrl = conf.get('loginPath')`

@Deviad What happens if you change the source of csrf-login.js in this way: ` var loginUrl = csrfInfo.url` to `var loginUrl = conf.get('loginPath')`