* Check whether we've got a given scenario based on its unique ID. * @param ci The content info to compare it to. * @param md5sum Whether to look at the md5sum or the id. * @return True iff we've got the scenario. */
| 682 | * @return True iff we've got the scenario. |
| 683 | */ |
| 684 | bool HasScenario(const ContentInfo &ci, bool md5sum) |
| 685 | { |
| 686 | return FindScenario(ci, md5sum).has_value(); |
| 687 | } |
| 688 | |
| 689 | /** |
| 690 | * Force a (re)scan of the scenarios. |
nothing calls this directly
no test coverage detected