mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-11 20:41:29 +03:00
Test connection string now uses the currently typed in connection string rather than the last saved one
This commit is contained in:
@@ -195,8 +195,8 @@ export class PostsService implements CanActivate {
|
||||
return this.http.post(this.path + 'transferDB', {local_to_remote: local_to_remote}, this.httpOptions);
|
||||
}
|
||||
|
||||
testConnectionString() {
|
||||
return this.http.post(this.path + 'testConnectionString', {}, this.httpOptions);
|
||||
testConnectionString(connection_string) {
|
||||
return this.http.post(this.path + 'testConnectionString', {connection_string: connection_string}, this.httpOptions);
|
||||
}
|
||||
|
||||
killAllDownloads() {
|
||||
|
||||
Reference in New Issue
Block a user