Fix T94805: Library weak reference generates "path not found" reports.

No reason to handle those paths here, those are fully internal temp
data, user should not be exposed to it currently.
This commit is contained in:
Bastien Montagne 2022-01-17 14:21:53 +01:00
parent 04feaa8bd0
commit 08822801ac
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ void BKE_bpath_missing_files_check(Main *bmain, ReportList *reports)
.bmain = bmain,
.callback_function = check_missing_files_foreach_path_cb,
.flag = BKE_BPATH_FOREACH_PATH_ABSOLUTE | BKE_BPATH_FOREACH_PATH_SKIP_PACKED |
BKE_BPATH_FOREACH_PATH_RESOLVE_TOKEN,
BKE_BPATH_FOREACH_PATH_RESOLVE_TOKEN | BKE_BPATH_TRAVERSE_SKIP_WEAK_REFERENCES,
.user_data = reports});
}