89341baa62
When a daily subscription is resumed after user deletion from RemnaWave panel and deactivation sync, connected_squads were cleared but never restored, causing internal squads to not be assigned. Also, admin notifications were missing from the Telegram bot handler path. Fixed across all 5 resume code paths: - cabinet /pause endpoint - miniapp /subscription/daily/toggle-pause endpoint - bot handle_toggle_daily_subscription_pause handler - DailySubscriptionService._process_single_charge - try_resume_disabled_daily_after_topup auto-resume Changes in each path: - Restore connected_squads from tariff.allowed_squads (fallback: all available servers) - Branch create/update based on remnawave_uuid presence - Follow-up PATCH after POST to ensure internal squads are assigned - Use limit=10000 in get_all_server_squads to avoid silent truncation - Separate try/except for squad restore vs RemnaWave sync for resilience - Add admin notification in bot handler (was missing)