fix in case of no url in aur pkg

This commit is contained in:
guinux 2016-03-11 09:34:11 +01:00
parent 7266a57664
commit 654a50daf4
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ namespace Pamac {
desc_label.set_markup (Markup.escape_text (node.get_string ()));
string url = "";
node = all_infos.get_member ("URL");
if (node != null) {
if (!node.is_null ()) {
url = Markup.escape_text (node.get_string ());
}
string aur_url = "http://aur.archlinux.org/packages/" + name;