Michele0303 / tiktok-live-recorder

🎥✨ A TikTok live streaming recorder tool written in Python. Capture and relive your favorite TikTok moments effortlessly. 🎥✨
MIT License
352 stars 94 forks source link

Fix automatic mode breaking on connection loss #101

Closed Reiszecke closed 6 months ago

Reiszecke commented 6 months ago

If you run the app in automatic mode and the 5 minute timer triggers during an internet loss, the process exits. Since you will most likely use the automatic mode unattended it makes sense to automatically recover from a connection loss - as you risk hours of downtime otherwise. This PR fixes that.

We could go a bit more fancy with custom return types but I don't think this is required here.

Michele0303 commented 6 months ago

Thanks