Skip to content

Commit ee3d3bf

Browse files
committed
fix "plugins" to "liberator.plugins"
1 parent ba2d781 commit ee3d3bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

twittperator/add-url-completer.tw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ THE POSSIBILITY OF SUCH DAMAGE.
4747
context.title = ['Tweeted URL', 'Tweeted text'];
4848
context.filters = [CompletionContext.Filter.textAndDescription];
4949
let cs = [];
50-
for (let [, t] in Iterator(plugins.twittperator.Tweets)) {
50+
for (let [, t] in Iterator(liberator.plugins.twittperator.Tweets)) {
5151
if (!(t.entities && t.entities.urls))
5252
continue;
5353
for (let [, u] in Iterator(t.entities.urls)) {

twittperator/reply-popup-alert.tw

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
return popupAlert(icon, title, text, false, null, null);
1919
}
2020

21-
plugins.twittperator.ChirpUserStream.addListener(
21+
liberator.plugins.twittperator.ChirpUserStream.addListener(
2222
function onMsg (msg, raw) {
2323
if (msg.text && msg.user && msg.in_reply_to_screen_name === screenName)
2424
simplePopupAlert(msg.user.screen_name, msg.text, msg.user.profile_image_url);

0 commit comments

Comments
 (0)