Skip to content

Commit

Permalink
fix downloading without checksums enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
bkw777 committed Jun 12, 2023
1 parent d8fb007 commit 15f1b69
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BRANDING.mak
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

VERSION_MAJOR = 1
VERSION_MINOR = 3
VERSION_MICRO = 13
VERSION_MICRO = 14
BRANDING_SHORTNAME = mainline
BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer
BRANDING_AUTHORNAME = Brian K. White
Expand Down
2 changes: 1 addition & 1 deletion po/messages.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: mainline 1.3.13\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-06-12 06:25-0400\n"
"POT-Creation-Date: 2023-06-12 07:16-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
3 changes: 2 additions & 1 deletion src/Common/DownloadManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ public class DownloadItem : GLib.Object {
}
}

public DownloadItem(string uri = "", string destdir = "", string fname = "", string cksum = "") {
public DownloadItem(string uri = "", string destdir = "", string fname = "", string? cksum = "") {
if (cksum==null) cksum = "";
vprint("DownloadItem("+uri+","+destdir+","+fname+","+cksum+")",3);
source_uri = uri;
file_name = fname;
Expand Down

0 comments on commit 15f1b69

Please sign in to comment.