Albert Nigmatzianov

Results 47 comments of Albert Nigmatzianov

Bugs with `exit status 23` are because of persian symbols, I think.

Yes, I didn't notice changes in your first comment. First problem is because of the situation, what `nehm` successfully downloads track, but tries to add to iTunes (I don't know...

Can you send me please, which config file do you have? At least `itunesPlaylist` and `dlFolder` values

If you will delete third line, errors with `osascript` will be fixed. Adding to iTunes is possible only on macOS.

Try to delete line with `dlFolder` in your config and try to execute nehm one more time. Please send me screen of result then.

It's very hard to fix issues on Windows, because I haven't got any Windows machine. And I don't want to buy Windows license. It's expensive for me only to test...

I fixed some issues Try to: ```bash go get -u github.com/bogem/id3v2 go get -u github.com/bogem/nehm go install github.com/bogem/nehm ``` Execute nehm and send the results please😊

Yes, because I didn't fix the bug when filename contains persian symbols. I will fix it during the christmas holidays, hopefully.

Unfortunately I have no time ;(

Adding global router middleware worked for me: ```js // middlewares/setHeader.js: export default function({ res }) { return res?.setHeader('X-Hello', 'World') } ``` ```js // nuxt.config.js router: { middleware: ['setHeader'] } ```