Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Ravada-Mirror
Commits
ed3cf501
Commit
ed3cf501
authored
Jun 09, 2021
by
robertperez-upc
Committed by
Francesc Guasch
Jun 09, 2021
Browse files
Correct calculation of is_volatile value (#1560)
parent
22f43695
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/Ravada/Domain.pm
View file @
ed3cf501
...
...
@@ -4128,7 +4128,7 @@ sub is_volatile($self, $value=undef) {
if
(
$self
->
is_known
)
{
$is_volatile
=
$self
->
_data
('
is_volatile
',
$value
);
}
elsif
(
$self
->
domain
)
{
$is_volatile
=
$self
->
is_persistent
();
$is_volatile
=
!
$self
->
is_persistent
();
}
$self
->
{
_is_volatile
}
=
$is_volatile
;
return
$is_volatile
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment