Quote:
Originally Posted by kovidgoyal
There's no social metadata anymore. The identify method should return all fields the source knows about. You can default disable fields by overriding the __init__ method in your plugin like this
Code:
def __init__(self, *args, **kwargs):
SourcePlugin.__init__(self, *args, **kwargs)
self.prefs.defaults['ignore_fields'] =[list of fields from touched_fields]
|
global name 'SourcePlugin' is not defined... Not sure where it's supposed to be defined, but I'm pretty sure you meant for me to use that specific string.
Is the list of field's the user is actually requesting available for testing inside of identify?