tedd / Tedd.ShortUrl

Simple URL shortening in ASP.Net 6.0 using MSSQL backend
https://go.tedd.no
GNU Lesser General Public License v2.1
5 stars 3 forks source link

Bug: Randomly generated key was ignoring settings #4

Closed tedd closed 2 years ago

tedd commented 2 years ago

public static string GetRandomKey(CreateSettings settings) => (new Random()).NextString("abcd123", 5); Should consider settings, of course.