Skip to content

Commit 483f323

Browse files
Merge pull request #43 from pebble-dev/add_test_uuid
Update test UUID exception
2 parents ad8f2d0 + dd63fe0 commit 483f323

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appstore/discord.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def random_party_emoji():
1313

1414
def announce_release(app, release, is_generated):
1515

16-
if config["TEST_APP_UUID"] is not None and config["TEST_APP_UUID"] == str(app.uuid):
16+
if config["TEST_APP_UUID"] is not None and config["TEST_APP_UUID"] == str(app.app_uuid):
1717
return
1818

1919
release_notes = release.release_notes
@@ -43,7 +43,7 @@ def announce_release(app, release, is_generated):
4343

4444
def announce_new_app(app, is_generated):
4545

46-
if config["TEST_APP_UUID"] is not None and config["TEST_APP_UUID"] == str(app.uuid):
46+
if config["TEST_APP_UUID"] is not None and config["TEST_APP_UUID"] == str(app.app_uuid):
4747
return
4848

4949
request_fields = [{

0 commit comments

Comments
 (0)