Git Product home page Git Product logo

Comments (18)

Supavitax avatar Supavitax commented on June 18, 2024 3

I've just been having a look at the code and when I change

Promise.all([steamGamesPromise, nonSteamGamesPromise]).then((values) => {

to

Promise.all([steamGamesPromise]).then((values) => {

from fetchGames() in games.jsx it loads my installed Steam games instantly.

https://i.postimg.cc/Qd8ndktG/img.jpg

I think it's this.getLoggedInUser().then((user) => { under getNonSteamGames() { that is preventing the Library tab from loading.

I've found the issue; in Steam.js under getLoggedInUser() change if (loginusersData.users[user].mostrecent) { to if (loginusersData.users[user].MostRecent) { and everything will work as intended.

from steamgriddb-manager.

SolidSnake4 avatar SolidSnake4 commented on June 18, 2024 2

Same here

from steamgriddb-manager.

Sotaur avatar Sotaur commented on June 18, 2024

Also, what version of node should this be built with?

from steamgriddb-manager.

Schellboy avatar Schellboy commented on June 18, 2024

Same problem here with a fresh install today :-/
Nothing happens when i click on import and the libary show me nothing and the spinning wheel nevver stops too.

[2019-11-21 09:53:50.533] [info] Started SGDB Manager 0.3.6
[2019-11-21 09:53:51.343] [info] Got Steam path: e:/steam
[2019-11-21 09:54:15.521] [info] Import: Started origin
[2019-11-21 09:54:15.765] [info] Import: Completed origin
[2019-11-21 09:54:15.774] [info] Import: bnet not installed
[2019-11-21 09:54:15.781] [info] Import: egs not installed
[2019-11-21 09:54:15.787] [info] Import: gog not installed
[2019-11-21 09:54:15.793] [info] Import: 3 games found for origin
[2019-11-21 09:54:15.798] [info] Origin.OFR.50.0002942,Origin.OFR.50.0003453,Origin.OFR.50.0003514
[2019-11-21 09:54:15.810] [info] Import: uplay not installed

from steamgriddb-manager.

gigq avatar gigq commented on June 18, 2024

Same issue here, also trying older versions results in the same problem.

from steamgriddb-manager.

Sotaur avatar Sotaur commented on June 18, 2024

It must be some update to Steam's APIs that broke this if older versions also break.

from steamgriddb-manager.

dus10lee avatar dus10lee commented on June 18, 2024

its strange because it works fine on my laptop but not my desktop with the same version of steam

from steamgriddb-manager.

doZennn avatar doZennn commented on June 18, 2024

Sorry for the delays, can you guys try with v0.4.0?

from steamgriddb-manager.

Supavitax avatar Supavitax commented on June 18, 2024

Sorry for the delays, can you guys try with v0.4.0?

Just tested it but same thing is happening.

from steamgriddb-manager.

barryjj avatar barryjj commented on June 18, 2024

Sorry for the delays, can you guys try with v0.4.0?

Just tested it but same thing is happening.

Same thing here.

I wonder if it's got to do with the size of the library on initial import... How big are your libraries? I left it running from for about 5 hours while the system was pretty much idle and still just had the spinning load icon in the application window. It certainly seems like it could be that the code is making too many API calls in a short amount of time and being temporarily blacklisted from hitting the API again. This used to happen with Enhanced Steam (before it was forked into Augmented Steam) when you would navigate to the market page and it would be making API calls to Valve in order to query the buy and sell orders for cards.

from steamgriddb-manager.

Schellboy avatar Schellboy commented on June 18, 2024

Unfortunately no improvement.
Here is the log:
[2019-12-03 14: 16: 50.267] [info] Got Steam path: c: / program files (x86) / steam
[2019-12-03 14: 16: 50.278] [info] Found 2 Steam libraries
[2019-12-03 14: 16: 50.298] [info] Fetched 4 Steam games
[2019-12-03 14: 18: 16.307] [info] Import: Started origin
[2019-12-03 14: 18: 16.515] [info] Import: Completed origin

The libraries are found, but in the manager is still spinningwheel and an import does not work even though it appears in the logfile as "completed". If any data is needed ask quietly. Thank you!

from steamgriddb-manager.

Supavitax avatar Supavitax commented on June 18, 2024

Sorry for the delays, can you guys try with v0.4.0?

Just tested it but same thing is happening.

Same thing here.

I wonder if it's got to do with the size of the library on initial import... How big are your libraries? I left it running from for about 5 hours while the system was pretty much idle and still just had the spinning load icon in the application window. It certainly seems like it could be that the code is making too many API calls in a short amount of time and being temporarily blacklisted from hitting the API again. This used to happen with Enhanced Steam (before it was forked into Augmented Steam) when you would navigate to the market page and it would be making API calls to Valve in order to query the buy and sell orders for cards.

I only have around 20 actually installed and I left it running for about 2 hours but nothing changed.

from steamgriddb-manager.

barryjj avatar barryjj commented on June 18, 2024

Sorry for the delays, can you guys try with v0.4.0?

Just tested it but same thing is happening.

Same thing here.
I wonder if it's got to do with the size of the library on initial import... How big are your libraries? I left it running from for about 5 hours while the system was pretty much idle and still just had the spinning load icon in the application window. It certainly seems like it could be that the code is making too many API calls in a short amount of time and being temporarily blacklisted from hitting the API again. This used to happen with Enhanced Steam (before it was forked into Augmented Steam) when you would navigate to the market page and it would be making API calls to Valve in order to query the buy and sell orders for cards.

I only have around 20 actually installed and I left it running for about 2 hours but nothing changed.

Does it only query installed games or does it query your entire library? I'm guessing the latter (much like the GOG Galaxy 2.0 beta, which chugged on initial import of my Steam library but is much better now only looking for the delta). If it's the former, I'm out of ideas. How big is your Steam library overall?

from steamgriddb-manager.

Supavitax avatar Supavitax commented on June 18, 2024

Sorry for the delays, can you guys try with v0.4.0?

Just tested it but same thing is happening.

Same thing here.
I wonder if it's got to do with the size of the library on initial import... How big are your libraries? I left it running from for about 5 hours while the system was pretty much idle and still just had the spinning load icon in the application window. It certainly seems like it could be that the code is making too many API calls in a short amount of time and being temporarily blacklisted from hitting the API again. This used to happen with Enhanced Steam (before it was forked into Augmented Steam) when you would navigate to the market page and it would be making API calls to Valve in order to query the buy and sell orders for cards.

I only have around 20 actually installed and I left it running for about 2 hours but nothing changed.

Does it only query installed games or does it query your entire library? I'm guessing the latter (much like the GOG Galaxy 2.0 beta, which chugged on initial import of my Steam library but is much better now only looking for the delta). If it's the former, I'm out of ideas. How big is your Steam library overall?

Looking at the code it only appears to query what's installed rather than the entire library. I have about 500 games but only around 20 installed.

from steamgriddb-manager.

doZennn avatar doZennn commented on June 18, 2024

Should be fixed in v0.4.1

from steamgriddb-manager.

Schellboy avatar Schellboy commented on June 18, 2024

THX. Now is running 👍

from steamgriddb-manager.

SolidSnake4 avatar SolidSnake4 commented on June 18, 2024

from steamgriddb-manager.

xfechx avatar xfechx commented on June 18, 2024

I am having this issue at the moment. All of the sudden, I can no longer view my library, it is loading infinitely. I have tried uninstalling and re-installing, without success.

from steamgriddb-manager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.