Index: AE/installer2/src/net/oni2/aeinstaller/backend/mods/download/ModDownloader.java
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/backend/mods/download/ModDownloader.java	(revision 645)
+++ AE/installer2/src/net/oni2/aeinstaller/backend/mods/download/ModDownloader.java	(revision 646)
@@ -73,5 +73,5 @@
 		if ((state == State.RUNNING) && (currentDownload < downloads.size())) {
 			downloads.get(currentDownload).start();
-		}else if (state == State.RUNNING) {
+		} else if (state == State.RUNNING) {
 			state = State.LAST_FILE_DOWNLOADED;
 			notifyListener();
@@ -102,7 +102,16 @@
 
 	private void notifyListener() {
-		listener.updateStatus(this, state, unpacked, downloads.size(),
-				downloadedComplete + downloadedCurrent, totalSize,
-				getTimeElapsed(), getTimeRemaining(), getDownloadSpeed());
+		if (currentDownload < downloads.size()) {
+			listener.updateStatus(this,
+					downloads.get(currentDownload).getMod(), state, unpacked,
+					downloads.size(), downloadedComplete + downloadedCurrent,
+					totalSize, getTimeElapsed(), getTimeRemaining(),
+					getDownloadSpeed());
+		} else {
+			listener.updateStatus(this, null, state, unpacked,
+					downloads.size(), downloadedComplete + downloadedCurrent,
+					totalSize, getTimeElapsed(), getTimeRemaining(),
+					getDownloadSpeed());
+		}
 	}
 
Index: AE/installer2/src/net/oni2/aeinstaller/backend/mods/download/ModDownloaderListener.java
===================================================================
--- AE/installer2/src/net/oni2/aeinstaller/backend/mods/download/ModDownloaderListener.java	(revision 645)
+++ AE/installer2/src/net/oni2/aeinstaller/backend/mods/download/ModDownloaderListener.java	(revision 646)
@@ -1,4 +1,5 @@
 package net.oni2.aeinstaller.backend.mods.download;
 
+import net.oni2.aeinstaller.backend.mods.Mod;
 import net.oni2.aeinstaller.backend.mods.download.ModDownloader.State;
 
@@ -12,4 +13,6 @@
 	 * @param source
 	 *            Event source
+	 * @param currentDownload
+	 *            Currently downloading mod
 	 * @param state
 	 *            Current state
@@ -29,6 +32,6 @@
 	 *            Average download speed in B/s
 	 */
-	public void updateStatus(ModDownloader source, State state, int filesDown,
-			int filesTotal, int bytesDown, int bytesTotal, int duration,
-			int remaining, int speed);
+	public void updateStatus(ModDownloader source, Mod currentDownload,
+			State state, int filesDown, int filesTotal, int bytesDown,
+			int bytesTotal, int duration, int remaining, int speed);
 }
