The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Plagger::Plugin::Subscription::Bookmarks::Mozilla;
use base qw( Plagger::Plugin::Subscription::XPath );

use URI::file;

sub load {
    my($self, $context) = @_;

    $self->conf->{url} = URI::file->new($self->conf->{path});
    $self->SUPER::load($context);
}
    
1;