Submitted by hansfriese
https://github.com/code-423n4/2023-02-malt/blob/main/contracts/RewardSystem/RewardThrottle.sol#L602 
https://github.com/code-423n4/2023-02-malt/blob/main/contracts/RewardSystem/LinearDistributor.sol#L101
RewardThrottle._sendToDistributor() reverts if one distributor is inactive.
RewardThrottle._sendToDistributor() distributes the rewards to several distributors according to their allocation ratios.
And LinearDistributor.declareReward() has an onlyActive modifier and it will revert in case of inactive.
As a result, RewardThrottle._sendToDistributor() will revert if one distributor is inactive rather than working with active distributors only.
I think its logical to continue to work with active distributors in _sendToDistributor().
0xScotch (Malt) confirmed
