Add missing data parameter for MimetypeHandler.set_thumbnail.
Review Request #12109 — Created March 7, 2022 and submitted — Latest diff uploaded
The abstract
MimetypeHandler
class defines aset_thumbnail
method
which is always expected to be overridden by subclasses. Unfortunately
the method signature didn't match, which caused static analysis tools to
get mad. This change adds the missingdata
argument.
Saw SA error disappear after adding missing param.