Git Product home page Git Product logo

Comments (5)

JPVenson avatar JPVenson commented on June 19, 2024

Thanks for the detailed bug report. Could you anyway post a stacktrace? After the last bugfix there is a selection that even if a duplicate exists, the first in order will be evaluated. In the meantime I will prepare a fix for that anyway to allow duplicate entries.

If you need a quickfix, you could mitigate the bug by overwriting the CurrencyHandler.DefaultHandler and provide your own list of currencies.

from morestachio.

JPVenson avatar JPVenson commented on June 19, 2024

I dont think you are running on the latest release that includes the bugfix. I read through your report and you said

grouping by LCID and CurrencyEnglishName (lines 17 through 33 in CurrencyHandler.cs).

That was pre-fix. After the fix on the current release the code is now like this:

static CurrencyHandler()
	{
		IDictionary<string, Currency> GetSystemCurrencies()
		{
			return CultureInfo.GetCultures(CultureTypes.SpecificCultures)
				.GroupBy(e => e.LCID)
				.Select(f =>
				{
					//this has to be tried because in some systems we can get invalid regions
					try
					{
						return new RegionInfo(f.Key);
					}
					catch (Exception)
					{
						return null;
					}
				})
				.Where(e => e != null)
				.GroupBy(e => e.ISOCurrencySymbol)
				.Select(f => f.First())
				.ToDictionary(e => e.ISOCurrencySymbol, e => new Currency(e.CurrencySymbol, e.ISOCurrencySymbol));
		}

		DefaultHandler = new CurrencyHandler(GetSystemCurrencies);
	}

That should negate the effects of duplicates.

from morestachio.

jlloutzenhiser avatar jlloutzenhiser commented on June 19, 2024

Thank you, I will double-check my results with the code you posted above.

Here is the requested stack trace:

image

from morestachio.

jlloutzenhiser avatar jlloutzenhiser commented on June 19, 2024

Thank you for the prompt response. You are correct, it was not the latest code that was causing the exception. I will close this issue post haste.

from morestachio.

JPVenson avatar JPVenson commented on June 19, 2024

No worries glad to help :-).

from morestachio.

Related Issues (14)

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.