-
-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--project-name does not work since code skips it due to project-id default 0 #252
Comments
Heya @focusaurus, funny to see you here! I encountered a different issue with add that seems to have been resolved by building from source, but along the way I saw this and opened a PR fixing it |
Hello, what is the status on this issue? For me it doesn't work if I specify the project name. E.g., this doesn't work:
|
@job-almekinders Unfortunately it seems like this isn't being actively maintained. My PR has a fix but it hasn't been merged. You can build it with my patch to get the fix. |
Sorry for that... |
No worries, thanks for making this and sharing it!!! ❤️ |
Thanks! @sachaos |
I believe the logic here in add.go always skips the project name lookup since
item.ProjectID
defaults to"0"
not empty string. I changed it to:if item.ProjectID == "" || item.ProjectID == "0" {
locally and that seemed to fix it for me. Can send a PR if that seems like the correct fix.
The text was updated successfully, but these errors were encountered: