Skip to content

Commit

Permalink
Resets addons info during online search
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed Feb 4, 2020
1 parent 0c75d1b commit 3514a8e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/registration/clients/online_search.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

Yast.import "Pkg"
Yast.import "Sequencer"
Yast.import "Popup"

module Registration
module Clients
Expand Down Expand Up @@ -121,7 +122,10 @@ def run
#
# @return [:next]
def find_addons
::Registration::Addon.find_all(registration)
Yast::Popup.Feedback(_("Initializing..."), _("Fetching the list of known modules/extensions")) do
::Registration::Addon.reset!
::Registration::Addon.find_all(registration)
end
:next
end

Expand Down

0 comments on commit 3514a8e

Please sign in to comment.