Skip to content

Commit

Permalink
FIX to implement in the other programs to open the browser.
Browse files Browse the repository at this point in the history
  • Loading branch information
forestrf committed Aug 10, 2014
1 parent c40c4b1 commit f94b21c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Project files/F4M-Downloader/MainClass.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ public static void Main (string[] cmdLine)
Debug.WriteLine(Utilidades.WL("Servidor arrancado"));

//Abre navegador
Process.Start("http://127.0.0.1:"+puerto+"/");
ProcessStartInfo sInfo = new ProcessStartInfo("http://127.0.0.1:"+puerto+"/");
Process.Start(sInfo);

while(true) {
if (forzarSalida) {
Expand Down

0 comments on commit f94b21c

Please sign in to comment.