whistle.pastekitlab 1.4.3 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -141,8 +141,9 @@ module.exports = (server, options) => {
141
141
  // ==================== 请求监听 ====================
142
142
  server.on('request', (req, res) => {
143
143
  try {
144
+ console.info("request:"+JSON.stringify(req))
144
145
  const url = req.fullUrl || req.url;
145
- if (!shouldIntercept(url)) return;
146
+ // if (!shouldIntercept(url)) return;
146
147
 
147
148
  const data = {
148
149
  eventId: generateId(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whistle.pastekitlab",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "description": "Whistle plugin for PasteKit Lab - Intercepts requests and sends them to requestlistviewer via WebSocket",
5
5
  "main": "index.js",
6
6
  "scripts": {