Skip to content

Commit

Permalink
fix(quick_fix): Fixing if statement for MQTT
Browse files Browse the repository at this point in the history
  • Loading branch information
YpNo committed Oct 14, 2024
1 parent 2785dec commit cd7bc7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![Docker Image CI](https://github.com/YpNo/arlo-camera-streamer/actions/workflows/docker-image.yml/badge.svg)
[![codecov](https://codecov.io/github/YpNo/arlo-camera-streamer/graph/badge.svg?token=1NMSHP7BLW)](https://codecov.io/github/YpNo/arlo-camera-streamer)

![Release](https://img.shields.io/v/release/ypno/arlo-camera-streamer/latest)
![Release](https://img.shields.io/github/v/release/ypno/arlo-camera-streamer)
![License](https://img.shields.io/github/license/ypno/arlo-camera-streamer)


Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async def main():
# fmt: on

# Initialize mqtt service
if MQTT_BROKER == "fake":
if MQTT_BROKER != "fake":
asyncio.create_task(mqtt.mqtt_client(cameras, bases))

# Graceful shutdown
Expand Down

0 comments on commit cd7bc7f

Please sign in to comment.