Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2409dde5c6 |
@@ -395,8 +395,6 @@ def search_product(search):
|
|||||||
page = 1
|
page = 1
|
||||||
total_products = 0 # Initialize the counter for total products
|
total_products = 0 # Initialize the counter for total products
|
||||||
|
|
||||||
log = options.get("log_message", None)
|
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
products = wcapi.get("products", params={"per_page": 100, "page": page, "search": search}).json()
|
products = wcapi.get("products", params={"per_page": 100, "page": page, "search": search}).json()
|
||||||
if not products:
|
if not products:
|
||||||
@@ -416,6 +414,7 @@ def process_all_products(options):
|
|||||||
|
|
||||||
page = 1
|
page = 1
|
||||||
total_products = 0 # Initialize the counter for total products
|
total_products = 0 # Initialize the counter for total products
|
||||||
|
log = options.get("log_message", None)
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
products = wcapi.get("products", params={"per_page": 100, "page": page}).json()
|
products = wcapi.get("products", params={"per_page": 100, "page": page}).json()
|
||||||
|
|||||||
@@ -4,4 +4,4 @@ This value is used by the Settings update checker.
|
|||||||
GitHub Actions overwrites this file for tagged builds.
|
GitHub Actions overwrites this file for tagged builds.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "v1.3.3"
|
__version__ = "v1.3.5"
|
||||||
|
|||||||
Reference in New Issue
Block a user