Skip to content

Commit

Permalink
Fixes #116. Youtube and Twitch media publishers now show properly in …
Browse files Browse the repository at this point in the history
…rewards panel

Fixed getting favicon for Twitch vod

Update for youtube showing up right away in panel.

Stabilized youtube media publisher panel

Removing debug log lines

Cleaned up redundant database functionality

Stabilized youtube media publisher panel

clean up debug comments

Replaced accidentally removed line

Merge

Fixes exclude/include on fresh site
  • Loading branch information
Jason Sadler authored and NejcZdovc committed Oct 29, 2018
1 parent 3ce25e3 commit ebdcd1f
Show file tree
Hide file tree
Showing 8 changed files with 624 additions and 45 deletions.
3 changes: 2 additions & 1 deletion include/bat/ledger/ledger.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ class LEDGER_EXPORT Ledger {
virtual void SetMediaPublisherInfo(const std::string& media_key,
const std::string& publisher_id) = 0;
virtual void GetMediaPublisherInfo(const std::string& media_key,
PublisherInfoCallback callback) = 0;
PublisherInfoCallback callback,
bool use_as_publisher_key = false) = 0;
virtual std::vector<ContributionInfo> GetRecurringDonationPublisherInfo() = 0;
virtual void GetPublisherInfoList(uint32_t start, uint32_t limit,
const ledger::PublisherInfoFilter& filter,
Expand Down
1 change: 1 addition & 0 deletions include/bat/ledger/publisher_info.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ LEDGER_EXPORT struct PublisherInfoFilter {
std::vector<std::pair<std::string, bool>> order_by;
unsigned int min_duration;
uint64_t reconcile_stamp;
std::string url;
};

LEDGER_EXPORT struct ContributionInfo {
Expand Down
Loading

0 comments on commit ebdcd1f

Please sign in to comment.