mirror of
				https://github.com/binwiederhier/ntfy.git
				synced 2025-10-31 13:02:24 +01:00 
			
		
		
		
	Merge pull request #537 from yardenshoham/alphabet
Add uppercase letters to random topic name generation
This commit is contained in:
		
						commit
						2b8ae406a3
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -242,7 +242,7 @@ export async function* fetchLinesIterator(fileURL, headers) { | |||
| } | ||||
| 
 | ||||
| export const randomAlphanumericString = (len) => { | ||||
|     const alphabet = "abcdefghijklmnopqrstuvwxyz0123456789"; | ||||
|     const alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; | ||||
|     let id = ""; | ||||
|     for (let i = 0; i < len; i++) { | ||||
|         id += alphabet[(Math.random() * alphabet.length) | 0]; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Philipp C. Heckel
						Philipp C. Heckel