X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=blobdiff_plain;f=videosite-dl.pl;h=a907b84a49e6e5816322eefa7b83207b17470915;hb=39767f785076ce64d831cbfbc7f51cc2af5ef22d;hp=594b020680704b81be1dfd506ff80bb00b3d1f3a;hpb=3255f6f448ae2e392871dc5241536b0dfb009a59;p=videosite.git diff --git a/videosite-dl.pl b/videosite-dl.pl index 594b020..a907b84 100755 --- a/videosite-dl.pl +++ b/videosite-dl.pl @@ -40,13 +40,8 @@ push(@INC, dirname(realpath($0))); load 'libvideosite'; unless(libvideosite::register_api({ - config_init => sub {}, - config_save => sub {}, - config_get => sub { return $config{join(".", @{$_[0]})} }, - config_set => sub { $config{join(".", @{$_[0]})} = $_[1] }, - config_has => sub { exists($config{join(".", @{$_[0]})}) }, - config_del => sub { delete($config{join(".", @{$_[0]})}) }, link_callback => \&link_callback, + _config_default => sub { return \%config }, _debug => sub { return $debug }, })) { die("Error registering API: $libvideosite::error"); @@ -60,7 +55,7 @@ foreach (@ARGV) { printf("Handling %s...\n", $_); libvideosite::check_for_link({ message => $_, - ewpf => sub { print @_, "\n" }, + io => sub { print @_, "\n" }, window => "", }); }