fix(els): SharedPromises::join bug

This commit is contained in:
Shunsuke Shibayama 2024-12-25 17:09:14 +09:00
parent c34e013658
commit b2b7f9cfd0
3 changed files with 14 additions and 9 deletions

View file

@ -73,7 +73,7 @@ impl Context {
}
if self.shared.is_some() && self.promises().is_registered(&path) && !self.mod_cached(&path)
{
let _result = self.promises().join(&path);
let _result = self.promises().join(&path, &self.cfg);
}
self.opt_mod_cache()?
.raw_ref_ctx(&path)