diff options
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | mdkapplet | 2 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,6 @@ +- mdkapplet + o workarounding issue with downloading files as user + Version 2.46 - 2 October 2008 - mdkapplet @@ -265,8 +265,10 @@ sub is_there_a_new_distributions() { my $urpm = Rpmdrake::open_db::fast_open_urpmi_db(); if (member($product_id->{version}, qw(2007.1 2008.0 2008.1))) { require mdkapplet_urpm; + mdkapplet_urpm::ensure_valid_cachedir($urpm); mdkapplet_urpm::get_content($urpm, $list); } else { + urpm::ensure_valid_cachedir($urpm); urpm::download::get_content($urpm, $list); } }; |