Activities of "liangshiwei"

The specified authorization code is no longer valid

The code has been used. so it can't be used again.

Hi,

i will keep checking this problem

I've tried clearing the node_modules folder, deleting the yarn.lock again and doing yarn install again. I don't understand these errors or how to debug them. Is there a minimum Angular or Node version we need to upgrade to along with the 8.2.2 upgrade? Is there any additional information I can provide you?

you can try create a new project to compare

shared

Add Service.Web reference to Saas.Web project and configure the module dependence

Hi,

could you share a minimal reproduceible project with me? i will check it.

shiwei.liang@volosoft.com

Hi,

i could not reproduce the problem.

  • create a new project via suite
  • adb reverse tcp:port tcp:port
  • run backend

Update DefaultStorage

public class DefaultStorage : IStorage, ITransientDependency
{
    public async Task<string> GetAsync(string key)
    {
        return Preferences.Get(key, string.Empty);
    }

    public async Task SetAsync(string key, string value)
    {
        if (value.IsNullOrEmpty())
        {
            await RemoveAsync(key);
            return;
        }

        Preferences.Set(key, value);
    }

    public Task RemoveAsync(string key)
    {
        Preferences.Remove(key);
        return Task.CompletedTask;
    }
}
  • Remove #if DEBUG code block
  • Change mode to Release

okay

Hi,

it's very strange.

Is it possible you to share a minimal reproducible project with me? i will check it.

my email is shiwei.liang@volosoft.com

Showing 141 to 150 of 5643 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30