MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-GooglePhotos

    Scheduled Pinned Locked Moved Entertainment
    294 Posts 56 Posters 340.9k Views 59 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • ? Offline
      A Former User
      last edited by

      Unhandled promise rejection is not the reason of this symptom, rather result.
      Anyway,
      I think Client network socket disconnected before secure TLS connection was established is not coming from program logic. It probably might be caused from unstable network status. (Especially handling TLS connection).
      There is no one reason of that issue, so it has no simple solution to diagnose or solve.
      I can’t represent this symptom, so hard to find the solution at this moment.

      @gonzonia
      For me;

      reconnect once the connection works again, the image being stuck won’t be an issue. Right now once the connection breaks the module can’t recover.

      When I force to break the connection then reconnect again, the module works again without issue. This module just loads an image from external google URL on each update schedule. So, if network is ok, image should be loaded and displayed. I suspect your router or proxy setting is interfering TLS connection between Google Server. but not sure.

      Anyway, at this moment hard to find reason why yours are not working.

      G 2 Replies Last reply Reply Quote 0
      • G Offline
        gonzonia @Guest
        last edited by

        @Sean I appreciate you trying. I’ll see if I can figure out more detail. It’s weird because it’ll work fine sometimes for days and then all of a sudden I can’t get it to do more than 1 or 2 photos before it stops. Nothing else on the pi has that issue, newsfeeds still update, weather updates, CalendarExt2 updates.

        I’m going to circumvent the pihole I have set up and point to GoogleDNS and see if that helps.

        I wasn’t seeing anything from the MagicMirror in the query logs for the pihole which was in itself odd.

        1 Reply Last reply Reply Quote 0
        • bheplerB Offline
          bhepler Module Developer @sdetweil
          last edited by bhepler

          @sdetweil - I was replying to the warning about the buffer package being deprecated.

          S 1 Reply Last reply Reply Quote 0
          • S Do not disturb
            sdetweil @bhepler
            last edited by

            @bhepler ah. never mind!

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            1 Reply Last reply Reply Quote 0
            • G Offline
              gonzonia @Guest
              last edited by

              @Sean I’ve got a theory. I don’t know enough about how it’s all working to be sure, but I’m testing it a little. I noticed in the logs that the error seemed to coincide with something the CalendarExt2 module was doing. Since they’re both connecting to Google, I thought, perhaps there’s something happening there. I’ve disabled the CalendarExt2 module and haven’t had a problem. I’m going to see how it all runs for today and then turn the module back on to see if the problem returns.

              ? 1 Reply Last reply Reply Quote 0
              • ? Offline
                A Former User @gonzonia
                last edited by

                @gonzonia
                It makes some sense. By racing to use the same connection, there could be some conflicts. Hmmmm…

                G 1 Reply Last reply Reply Quote 0
                • G Offline
                  gonzonia @Guest
                  last edited by

                  @Sean Sadly, it doesn’t look like that’s it. Everything ran great for 12 hours, than quit again. Restarted this morning and it lasted an hour or two. The problem always appears arround indexing.

                  [2020-04-30 08:56:17.785] [LOG]    2020-04-30T08:56:17 <log> [GPHOTOS] Start Album scanning (/home/pi/MagicMirror/modules/MMM-GooglePhotos/node_helper.js:44 Class.log)
                  [2020-04-30 08:56:17.789] [LOG]    2020-04-30T08:56:17 <log> [GPHOTOS:AUTH] Token is alive. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:20 Auth.log)
                  [2020-04-30 08:56:17.791] [LOG]    2020-04-30T08:56:17 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                  REPEATS....
                  [2020-04-30 08:56:55.332] [LOG]    2020-04-30T08:56:55 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                  [2020-04-30 08:57:17.685] [LOG]    2020-04-30T08:57:17 <log> [GPHOTOS:CORE] Error: Client network socket disconnected before secure TLS connection was established (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                  [2020-04-30 08:57:18.712] [LOG]    2020-04-30T08:57:18 <log> [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/XXXXXX (/home/pi/MagicMirror/modules/MMM-GooglePhotos/node_helper.js:44 Class.log)
                  [2020-04-30 08:59:18.130] [LOG]    2020-04-30T08:59:18 <log> [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/XXXXXXXX(/home/pi/MagicMirror/modules/MMM-GooglePhotos/node_helper.js:44 Class.log)
                  
                  

                  I’m determined to figure this out though.

                  S 1 Reply Last reply Reply Quote 0
                  • S Do not disturb
                    sdetweil @gonzonia
                    last edited by

                    @gonzonia

                    correct, the code then fails, the module sends the helper a message

                          case 'IMAGE_LOAD_FAIL':
                            this.log("Image loading fails. Check your network.:", payload)
                            break
                    

                    and the helper logs it, but never does anything after that
                    so, now the module is waiting for another image,

                          case 'UPLOAD':
                            this.upload(payload)
                            break
                    

                    but the helper doesn’t know

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    ? 1 Reply Last reply Reply Quote 0
                    • ? Offline
                      A Former User @sdetweil
                      last edited by

                      @sdetweil
                      Nothing can be dine after image loading fails. Even connected again, couldn’t be recognized. It is just kind logging.
                      I’m not sure what could be possible to do for this kind of network issue by module itself.

                      1 Reply Last reply Reply Quote 0
                      • RoggerFabriR Offline
                        RoggerFabri
                        last edited by

                        Hi @Sean , thanks a lot for your time and effort on creating this module, I was searching for something similar for a long time already. From time to time, I’m getting several Forbidden 403 responses from the requests to load new pictures, this gives the impression that the pictures are stuck. Do you have an idea of what might be causing that?

                        ? bheplerB 2 Replies Last reply Reply Quote 0
                        • ? Offline
                          A Former User @RoggerFabri
                          last edited by

                          @RoggerFabri
                          All those kinds of errors (403, 500, …) means network/server errors. Nothing could do in client(module) itself. Only thing would be just waiting(stuck) problem solved by network/server.

                          G 1 Reply Last reply Reply Quote 0
                          • bheplerB Offline
                            bhepler Module Developer @RoggerFabri
                            last edited by

                            @RoggerFabri - I don’t know if this is relevant, but I know Amazon AWS bulk storage returns 403 errors if you get the URL wrong. I’m not sure if their security model is so granular that files have to be authorized independently or if the wrong URL attempts to serve up the directory index and that file is locked out. And I have no idea if Google uses the same technique.

                            Either way, I would check the request to make sure it is pointing to a valid asset.

                            1 Reply Last reply Reply Quote 0
                            • G Offline
                              gonzonia @Guest
                              last edited by

                              @Sean 403 is a “forbidden” status. Is it possible to catch that status being returned and then go back to refreshing the token and starting the process over from there?

                              ? 1 Reply Last reply Reply Quote 0
                              • ? Offline
                                A Former User @gonzonia
                                last edited by A Former User

                                @gonzonia
                                There could be possibility “dead url after it’s lifetime”(60 minutes) but to avoid it, photos working urls would be rescanned and refreshed per 50mins.
                                Of course, if there be network error to prevent resurrection, it will not work. That is not the token issue.

                                G 1 Reply Last reply Reply Quote 0
                                • O Offline
                                  orayoflighto Project Sponsor @orayoflighto
                                  last edited by orayoflighto

                                  This post is deleted!
                                  1 Reply Last reply Reply Quote 0
                                  • G Offline
                                    gonzonia @Guest
                                    last edited by

                                    @Sean Okay. Thanks. As a stab in the dark I changed the pageSize in the getAlbum call to 25. It’s been running now for 14 hours without an error. If it’s still good in the morning I’ll restore the old version and see if the error comes back. I don’t remember what led me down that path but something this morning made me think to give it a try.

                                    G 1 Reply Last reply Reply Quote 0
                                    • G Offline
                                      gonzonia @gonzonia
                                      last edited by

                                      @Sean So I had over 24 hours with it working. Swapped back to the original file and it errored out within 2 hours. Swapped back to new file and again errored in 2 hours. I don’t get it. I was mistaken with what I changed, I changed the getImage call to a pageSize of 25. This made indexing take longer. It always returns the TLS error when indexing. I have it looking at two albums. One is big with 937 images. The other is only 129. When the error happens it is always while indexing the first one. Is the large album the problem?

                                      [2020-05-02 21:35:51.841] [LOG]    2020-05-02T21:35:51 <log> [GPHOTOS] Start Album scanning (/home/pi/MagicMirror/modules/MMM-GooglePhotos/node_helper.js:44 Class.log)
                                      [2020-05-02 21:35:51.845] [LOG]    2020-05-02T21:35:51 <log> [GPHOTOS:AUTH] Token is alive. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:20 Auth.log)
                                      [2020-05-02 21:35:51.848] [LOG]    2020-05-02T21:35:51 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                                      [2020-05-02 21:35:53.427] [LOG]    2020-05-02T21:35:53 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                                      [2020-05-02 21:35:55.358] [LOG]    2020-05-02T21:35:55 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                                      [2020-05-02 21:35:56.996] [LOG]    2020-05-02T21:35:56 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                                      [2020-05-02 21:35:58.431] [LOG]    2020-05-02T21:35:58 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                                      [2020-05-02 21:35:59.769] [LOG]    2020-05-02T21:35:59 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                                      [2020-05-02 21:36:01.544] [LOG]    2020-05-02T21:36:01 <log> [GPHOTOS:CORE] Indexing photos now. (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                                      [2020-05-02 21:36:16.288] [LOG]    2020-05-02T21:36:16 <log> [GPHOTOS:CORE] Error: Client network socket disconnected before secure TLS connection was established (/home/pi/MagicMirror/modules/MMM-GooglePhotos/GPhotos.js:124 GPhotos.log)
                                      
                                      1 Reply Last reply Reply Quote 0
                                      • P Offline
                                        philmavedzenge
                                        last edited by philmavedzenge

                                        I’m having the same issue above as @gonzonia . After some time the module stops changing the images and they become stuck until I refresh the browser. This only started about 2 or so weeks ago.

                                        1 Reply Last reply Reply Quote 0
                                        • G Offline
                                          gonzonia
                                          last edited by

                                          @Sean Okay. I think I’m understanding the behavior a little more. It ran yesterday for over 12 hours. When it failed, it happened on indexing, then a single image was loaded successfully. After that all images failed and the module never tried refreshing the token or indexing again.

                                          I don’t know what the cause of the network socket disconnected error is, but is there any way for the module to recover?

                                          If it recovered even in another 50 min when it should do another scan, I think that’s reasonable. The problem is that the error is fatal to the scanning process and all the URLs are bad after the 60 min lifespan. The module never restarts the scanning after the initial failure.

                                          1 Reply Last reply Reply Quote 0
                                          • K Offline
                                            kykzzang
                                            last edited by

                                            Dear @Sean

                                            Here is a log from the latest commit.

                                            It hasn’t been recovered yet. but it has good Internet access.

                                            “Image loading fails…” logs keep accumulating.

                                            Thanks.

                                            [2020-05-06 21:23:04.194] [LOG]    [GPHOTOS:CORE] Indexing photos now.
                                            [2020-05-06 21:23:07.145] [LOG]    [GPHOTOS:CORE] Indexing photos now.
                                            [2020-05-06 21:23:09.834] [LOG]    [GPHOTOS:CORE] Indexing photos now.
                                            [2020-05-06 21:23:15.916] [LOG]    [GPHOTOS:CORE] Indexing photos now.
                                            [2020-05-06 21:23:18.606] [LOG]    [GPHOTOS:CORE] Indexing photos now.
                                            [2020-05-06 21:23:20.520] [LOG]    [GPHOTOS] Getting 218 photo(s) list from 'display'
                                            [2020-05-06 21:23:20.521] [LOG]    [GPHOTOS] Total indexed photos: 218
                                            [2020-05-06 21:23:21.424] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_ZAGkc2g_-LhINGiFXSqctac3jIms5eqooJW4_hLdNP4ehf_KR2peBRmgNVFUCDKVOT
                                            [2020-05-06 21:25:21.010] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_aRmsMj1l0vutiPh7HG5ZlkmEV-af6cPOPI_SES2O6PzX8gaGfLmJoMMPDw3xcZ3beo
                                            [2020-05-06 21:27:21.095] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_YKc6UhR4ZvdFPODYflw6cJYOaApkgyig85PP2UBuqyRIwVFreSLYerOS0L6eI9KlCB
                                            [2020-05-06 21:29:20.803] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_ZANdgPjWShaWBl8CgPt8LgN2EVYO6Muq4GwolO8eJh1i65kVxRQEpwYokdjwrxD5bW
                                            [2020-05-06 21:31:21.026] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_aC6voVTY4cjTOGEGner4cuOGtUC41vpPTElactvgQiPCRufJIt-CekLjGvna1lNf5q
                                            [2020-05-06 21:33:21.279] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_aSF39eNT_5LY4V7Q1pD-VWqsYU2d3oIOPtaTZEPIdDT20UQfKbcgmesm0ylq2pZDP6
                                            [2020-05-06 21:35:22.344] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_bb6fTpmmBjYcDWx_jS8TbY_lj9SyxNX423SIWrRVPxlmMPeQwsWJTDdyuEqTdrJpFD
                                            [2020-05-06 21:37:21.065] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_ZJYlbhKK_ggA67q6TWDFVW1IKKHYyuwH36KyYZ9qKqTOmYL9hfVw5aX2QjumzmcIuA
                                            [2020-05-06 21:39:21.220] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_bOkvNs0-l0NP0MC9dL3xjt152FCwXo9SOW1cSyrrSxaYCg-tPYqTs6SqJYPz1jvz_h
                                            [2020-05-06 21:41:21.288] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_brpTK4ce4oteU2Te43zXsgUNyobzmk8MkiqFF6jpPr23lh1WrAqwj8dLPKCzbmhNkW
                                            [2020-05-06 21:43:21.509] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_YXQKGn4L3DOuTxaqK_khpcrSZDvJggiDLMoQEn8YHfkDm4ZmY4HiDB2kKihBa9lYRp
                                            [2020-05-06 21:45:21.225] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_adPN03hNIlKDYJ8QQWct1QUEbYEcDTV9rrN-Bzb-ilGXQ7fBqjxZccWvT6XoGGedrf
                                            [2020-05-06 21:47:22.063] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_YiyTxwNVgIYEXnCNt8B3auhdEQ5H2KdEIf2qEcdoPCheIaV6mPde96o2YxmuqNfK5i
                                            [2020-05-06 21:49:21.664] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_Yaj48kiRsP2FFtguvyIApL5kPeFGkjzKbFtyP0p9LJSQZIzhuCTEhaTWEH6gD4peFG
                                            [2020-05-06 21:51:21.005] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_bG-4fdNDpDGNJI5P91gZBl3Wj9xa3MrxNeAmpgH6ZDstKl5_vPNMlNWEXsSI0Hw_qs
                                            [2020-05-06 21:53:21.391] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_bm09bFbINYYpaWRsLcUGMSRGHHuvngYwi-uQKqvWE5JEH12_kWbayq0sUoEGVoZTxX
                                            [2020-05-06 21:55:21.004] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_Yvu_S-5wIgSEAjPLs2ekIfRmZxlgWQAurf9RMFun9neeBkQ5KDRs9lvXovnNWrXGDL
                                            [2020-05-06 21:57:21.028] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_YJygMYRIxk4kP386m8TBzNrSzu0hOIK5a_PMWai9lsnp0PJkwc4qsbVfYZNA-T7oW5
                                            [2020-05-06 21:59:21.091] [LOG]    [GPHOTOS] Image loaded: https://lh3.googleusercontent.com/lr/AFBm1_b7Iuy-YjiS6zdyKfd6nXF-7IakajHHaSJ_dvH_qOyh4gdkX1hzI-X7Uk49IN9oHK8y
                                            [2020-05-06 22:01:20.645] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_aJHCYEO9T3xoxSU_eV3qF1NL8FUd545Lqf1OUZ
                                            [2020-05-06 22:03:20.645] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_bEH7pOxzBdRdkA8X9eU4YdshzT-HoaCw9-0XKr
                                            [2020-05-06 22:05:20.645] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_YzKj9MLh4hpOiVdujA8fJ26pop4TBfqQfOvemT
                                            [2020-05-06 22:07:20.642] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_ak9_lafawfAhSbhANtZXBdVHKOejIoGQkaV6jg
                                            [2020-05-06 22:09:20.646] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_aQZeAz0lgmTYU5yQeFSTldb3scIuV3JHh5XlRM
                                            [2020-05-06 22:11:20.646] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_ZAsV0o2wtiNNk3fKwxvPmMXfSWFfZ3qjgFoPv7
                                            [2020-05-06 22:13:20.639] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_bvB6ykWhOyPUcRLEAns7oT3Ki6feq2XwCwI6CV
                                            [2020-05-06 22:15:20.650] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_b_CM8oP6af_yfbt_z1avXwYtCb73Pv5nhZwWgP
                                            [2020-05-06 22:17:20.641] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_YTziKyYe6pjVgxePdK1WmlFNvbuxsdBHQMxg0F
                                            [2020-05-06 22:18:20.551] [LOG]    [GPHOTOS] Start Album scanning
                                            [2020-05-06 22:18:20.555] [LOG]    [GPHOTOS:AUTH] Token is alive.
                                            [2020-05-06 22:18:20.557] [LOG]    [GPHOTOS:CORE] Indexing photos now.
                                            [2020-05-06 22:18:20.573] [LOG]    [GPHOTOS:CORE] Error: getaddrinfo EAI_AGAIN photoslibrary.googleapis.com
                                            [2020-05-06 22:19:20.652] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_b0lHI5Yb2yEo0cvz5PeedACuCUQVXlwh4emujT
                                            [2020-05-06 22:21:20.643] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_YCEopH8TdGyRfIY8H8ZUTzsU0qS-X7CO3nmutB
                                            [2020-05-06 22:23:20.641] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_ZS2xOl1MGDGVD8BSG2RuZ4sA9420QAQTXy-a67
                                            [2020-05-06 22:25:20.641] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_boFHSaOpWwMDu8a4Mmk3Wt2uCxMLwx0gvzjkvz
                                            [2020-05-06 22:27:20.654] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_bg60eryk44zXE1qAXmShms29YBS5CkOqhkWIJm
                                            [2020-05-06 22:29:20.653] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_YiAaGQbuwZyzDl8KAPUWdsLaXKsCc6MEmuiEpf
                                            [2020-05-06 22:31:20.647] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_br8F5aUbIbDWDk4FTzmawCGeYS8JlH1fYuK8or
                                            [2020-05-06 22:33:20.647] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_Zs_BgUJgTgurcCBrDgV8SMQP1Co-lVhT5McCSM
                                            [2020-05-06 22:35:20.657] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_bA80MDC-Clsfa8Mkh-NgbAboCps1DHRPsupQxj
                                            [2020-05-06 22:37:20.648] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_bV4Q0F-APfHaNq7pYU1DMHEkKk480oIDLcW9U_
                                            [2020-05-06 22:39:20.657] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_a_15C3RmH37JYxvm32cwOHgKt_5eCR8PrA6N9T
                                            [2020-05-06 22:41:20.658] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_Z83PeGemOxMHOvciv-a_8__crs-cqQ2XYw8vzk
                                            [2020-05-06 22:43:20.664] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_Zxi4V3iJWKOf9F9cN1T29TDt-FFZIpo0FRqBW-
                                            [2020-05-06 22:45:20.653] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_atKOkiCTBnM_4IkZELUpjgYhSKrItSGQRSe2lT
                                            [2020-05-06 22:47:20.661] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_YIqlfr5fXAdBlmAATjbo4G928V5A7lKMqs_0CI
                                            [2020-05-06 22:49:20.661] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_bipyHtNScWr3gl4cQVoewCyIlyD-ZfQT_pRb8y
                                            [2020-05-06 22:51:20.662] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_ZLyGsme1Z5GbQ6AU-AriXZHHd6hQvzI1iWxEiT
                                            [2020-05-06 22:53:20.665] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_a3Pgwf0uVyWcUqP8-qaWPh8xOL_mYGqpjEKhhA
                                            [2020-05-06 22:55:20.661] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_ZoyynSCyzTQfmQ1jO2Ol2jJqYLgBvOMGJ07YcZ
                                            [2020-05-06 22:57:20.664] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_b8DtApJPwR13hJkJ6FfAbReueFS389qNjggGkU
                                            [2020-05-06 22:59:20.666] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_Yr3nj_Y6RdmqUWA96FG3FI547-PZFLO5JrP5pI
                                            [2020-05-06 23:01:20.668] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_br-EpEIN8WzStxPcQt1c5h6NnpH8XE21YEApGp
                                            [2020-05-06 23:03:20.669] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_a08aZNB_XhCglG7WXcQ092a8eFzMzNUNaRZvqO
                                            [2020-05-06 23:05:20.658] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_aVURlKJiJR0fTzJWpcGTMlXvfiGk5nJ6etiSHi
                                            [2020-05-06 23:07:20.659] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_akPXXjHYRbPdSNItqwOLtXOcOSrc-HhJXyM3xb
                                            [2020-05-06 23:09:20.668] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_Z05i2rhrYihDYrlFNXa5Whwx6GhoHWfNqH1bKg
                                            [2020-05-06 23:11:20.670] [LOG]    [GPHOTOS] Image loading fails. Check your network.: https://lh3.googleusercontent.com/lr/AFBm1_bIkwJb-V0P5Gwy5K3bQ8EANAZKmKzOA0I_LxPs
                                            
                                            
                                            cowboysdudeC K ? 3 Replies Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 11
                                            • 12
                                            • 13
                                            • 14
                                            • 15
                                            • 13 / 15
                                            • First post
                                              Last post
                                            Enjoying MagicMirror? Please consider a donation!
                                            MagicMirror created by Michael Teeuw.
                                            Forum managed by Sam, technical setup by Karsten.
                                            This forum is using NodeBB as its core | Contributors
                                            Contact | Privacy Policy