diff --git a/fdroidserver/scanner.py b/fdroidserver/scanner.py index 08c09918..ebcc00b5 100644 --- a/fdroidserver/scanner.py +++ b/fdroidserver/scanner.py @@ -994,6 +994,13 @@ def scan_source(build_dir, build=metadata.Build(), json_per_build=None): count += handleproblem( _('Java JAR file'), path_in_build_dir, filepath, json_per_build ) + elif curfile.endswith('.wasm'): + count += handleproblem( + _('WebAssembly binary file'), + path_in_build_dir, + filepath, + json_per_build, + ) elif curfile.endswith('.java'): if not os.path.isfile(filepath):