forked from midou/invidious
		
	Remove some mentions of omarroth
This commit is contained in:
		@@ -9,9 +9,9 @@ keywords:
 | 
				
			|||||||
- video
 | 
					- video
 | 
				
			||||||
- privacy
 | 
					- privacy
 | 
				
			||||||
home: https://invidio.us/
 | 
					home: https://invidio.us/
 | 
				
			||||||
icon: https://raw.githubusercontent.com/omarroth/invidious/05988c1c49851b7d0094fca16aeaf6382a7f64ab/assets/favicon-32x32.png
 | 
					icon: https://raw.githubusercontent.com/iv-org/invidious/05988c1c49851b7d0094fca16aeaf6382a7f64ab/assets/favicon-32x32.png
 | 
				
			||||||
sources:
 | 
					sources:
 | 
				
			||||||
- https://github.com/omarroth/invidious
 | 
					- https://github.com/iv-org/invidious
 | 
				
			||||||
maintainers:
 | 
					maintainers:
 | 
				
			||||||
- name: Leon Klingele
 | 
					- name: Leon Klingele
 | 
				
			||||||
  email: mail@leonklingele.de
 | 
					  email: mail@leonklingele.de
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,7 @@
 | 
				
			|||||||
name: invidious
 | 
					name: invidious
 | 
				
			||||||
 | 
					
 | 
				
			||||||
image:
 | 
					image:
 | 
				
			||||||
  repository: omarroth/invidious
 | 
					  repository: iv-org/invidious
 | 
				
			||||||
  tag: latest
 | 
					  tag: latest
 | 
				
			||||||
  pullPolicy: Always
 | 
					  pullPolicy: Always
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,6 +3,7 @@ version: 0.20.1
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
authors:
 | 
					authors:
 | 
				
			||||||
  - Omar Roth <omarroth@protonmail.com>
 | 
					  - Omar Roth <omarroth@protonmail.com>
 | 
				
			||||||
 | 
					  - Invidous team
 | 
				
			||||||
 | 
					
 | 
				
			||||||
targets:
 | 
					targets:
 | 
				
			||||||
  invidious:
 | 
					  invidious:
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -95,7 +95,7 @@ class Config
 | 
				
			|||||||
  property port : Int32 = 3000                                     # Port to listen for connections (overrided by command line argument)
 | 
					  property port : Int32 = 3000                                     # Port to listen for connections (overrided by command line argument)
 | 
				
			||||||
  property host_binding : String = "0.0.0.0"                       # Host to bind (overrided by command line argument)
 | 
					  property host_binding : String = "0.0.0.0"                       # Host to bind (overrided by command line argument)
 | 
				
			||||||
  property pool_size : Int32 = 100                                 # Pool size for HTTP requests to youtube.com and ytimg.com (each domain has a separate pool of `pool_size`)
 | 
					  property pool_size : Int32 = 100                                 # Pool size for HTTP requests to youtube.com and ytimg.com (each domain has a separate pool of `pool_size`)
 | 
				
			||||||
  property admin_email : String = "omarroth@protonmail.com"        # Email for bug reports
 | 
					  property admin_email : String = "FIXME"        # Email for bug reports
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @[YAML::Field(converter: Preferences::StringToCookies)]
 | 
					  @[YAML::Field(converter: Preferences::StringToCookies)]
 | 
				
			||||||
  property cookies : HTTP::Cookies = HTTP::Cookies.new               # Saved cookies in "name1=value1; name2=value2..." format
 | 
					  property cookies : HTTP::Cookies = HTTP::Cookies.new               # Saved cookies in "name1=value1; name2=value2..." format
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -427,7 +427,7 @@ def generate_captcha(key, db)
 | 
				
			|||||||
end
 | 
					end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def generate_text_captcha(key, db)
 | 
					def generate_text_captcha(key, db)
 | 
				
			||||||
  response = make_client(TEXTCAPTCHA_URL, &.get("/omarroth@protonmail.com.json").body)
 | 
					  response = make_client(TEXTCAPTCHA_URL, &.get("/FIXME.json").body)
 | 
				
			||||||
  response = JSON.parse(response)
 | 
					  response = JSON.parse(response)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  tokens = response["a"].as_a.map do |answer|
 | 
					  tokens = response["a"].as_a.map do |answer|
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user