Added missing check in item_t::get_actual
This commit is contained in:
parent
4bc99310f7
commit
f3565495b1
1 changed files with 1 additions and 1 deletions
|
|
@ -187,7 +187,7 @@ namespace {
|
|||
}
|
||||
|
||||
value_t get_actual(item_t& item) {
|
||||
return ! item.has_flags(ITEM_GENERATED);
|
||||
return ! item.has_flags(ITEM_GENERATED | ITEM_TEMP);
|
||||
}
|
||||
|
||||
value_t get_date(item_t& item) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue