aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/src/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'askama_derive/src/input.rs')
-rw-r--r--askama_derive/src/input.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/askama_derive/src/input.rs b/askama_derive/src/input.rs
index 7314d2e..215d060 100644
--- a/askama_derive/src/input.rs
+++ b/askama_derive/src/input.rs
@@ -119,8 +119,13 @@ impl TemplateInput<'_> {
while let Some(nodes) = nested.pop() {
for n in nodes {
let mut add_to_check = |path: PathBuf| -> Result<(), CompileError> {
- let source = get_template_source(&path)?;
- check.push((path, source));
+ if !map.contains_key(&path) {
+ // Add a dummy entry to `map` in order to prevent adding `path`
+ // multiple times to `check`.
+ map.insert(path.clone(), Parsed::default());
+ let source = get_template_source(&path)?;
+ check.push((path, source));
+ }
Ok(())
};