We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Adding URL calls add_item function, which checks new URL vs item_name, but not vs url in the database.
The text was updated successfully, but these errors were encountered:
Don't know how to make pull requests. But here is the fix:
--- a/functions.py +++ b/functions.py @@ -274,7 +274,7 @@ def add_item(name_check): conn = create_connection(database) c = conn.cursor() try: - c.execute("SELECT count(*) FROM ph_items WHERE url_name = ?", (item_name,)) + c.execute("SELECT count(*) FROM ph_items WHERE url_name = ? and type = ? ", (item_url_name,item_type))
Sorry, something went wrong.
No branches or pull requests
Adding URL calls add_item function, which checks new URL vs item_name, but not vs url in the database.
The text was updated successfully, but these errors were encountered: