When the daily digest goes out, the correct forum name is not getting sent. Instead, the topic title is getting sent as the forum name.
Here’s the fix:
File: …subscriptions/library/sp-subscriptions-digest.php
Line 77:
current code: $users[$id][$digest->topic_id][‘forum’] = $digest->topic_name;
corrected code: $users[$id][$digest->topic_id][‘forum’] = $digest->forum_name;