[gnome-maps] resrobot: Fix missing ; and end of statement



commit 3b12fd167afc0fb35ba40248558ddae9f05a3c45
Author: Marcus Lundblad <ml update uu se>
Date:   Mon Nov 4 20:26:13 2019 +0100

    resrobot: Fix missing ; and end of statement

 src/transitplugins/resrobot.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/transitplugins/resrobot.js b/src/transitplugins/resrobot.js
index 19048773..3f24af5b 100644
--- a/src/transitplugins/resrobot.js
+++ b/src/transitplugins/resrobot.js
@@ -524,7 +524,7 @@ var Resrobot = class Resrobot {
         let [arrival, arrivalTzOffset] = [,];
 
         if (stop.depTime && stop.depDate)
-            [departure, departureTzOffset] = this._parseTime(stop.depTime, stop.depDate)
+            [departure, departureTzOffset] = this._parseTime(stop.depTime, stop.depDate);
         if (stop.arrTime && stop.arrDate)
             [arrival, arrivalTzOffset] = this._parseTime(stop.arrTime, stop.arrDate);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]